From b38354420c16902f0d08cde275a91d27082f5e27 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien?= Date: Wed, 28 Jun 2023 06:50:09 -0400 Subject: [PATCH] Update README.md Align with docker sle118/squeezelite-esp32-idfv435, and esp-idf version 4.3.5 --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 5cb1e970..e82f94b6 100644 --- a/README.md +++ b/README.md @@ -543,21 +543,21 @@ See squeezlite command line, but keys options are A simple alternative to building the project's binaries is to leverage the same docker image that is being used on the GitHub Actions to build our releases. The instructions below assume that you have cloned the squeezelite-esp32 code that you want to build locally and that you have opened a command line/bash session in the folder that contains the code. Pull the most recent docker image for the environment: ``` -docker pull sle118/squeezelite-esp32-idfv43 +docker pull sle118/squeezelite-esp32-idfv435 ``` Then run the container interactively : ``` for windows: -docker run -v %cd%:/project -w /project -it sle118/squeezelite-esp32-idfv43 +docker run -v %cd%:/project -w /project -it sle118/squeezelite-esp32-idfv435 for linux: -docker run -it -v `pwd`:/workspace/squeezelite-esp32 sle118/squeezelite-esp32-idfv43 +docker run -it -v `pwd`:/workspace/squeezelite-esp32 sle118/squeezelite-esp32-idfv435 ``` The above command will mount this repo into the docker container and start a bash terminal. From there, simply run idf.py build to build, etc. Note that at the time of writing these lines, flashing is not possible for docker running under windows https://github.com/docker/for-win/issues/1018. ### Manual Install of ESP-IDF You can install IDF manually on Linux or Windows (using the Subsystem for Linux) following the instructions at: https://www.instructables.com/id/ESP32-Development-on-Windows-Subsystem-for-Linux/ or see here https://docs.espressif.com/projects/esp-idf/en/latest/esp32/get-started/windows-setup.html for a direct install. -**Use the esp-idf 4.0 https://github.com/espressif/esp-idf/tree/release/v4.0 and a recent add esp-dsp (after 08/2020)** +**Use the esp-idf 4.3.5 https://github.com/espressif/esp-idf/tree/release/v4.3.5 ** ## Building Squeezelite-esp32 When initially cloning the repo, make sure you do it recursively. For example: `git clone --recursive https://github.com/sle118/squeezelite-esp32.git`