Merge pull request #12170 from benpicco/esp32-fix_doc

cpu/esp32: fix documentation about toolchain installation
This commit is contained in:
Gunar Schorcht 2019-09-05 12:58:32 +02:00 committed by GitHub
commit b3737715e5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -332,11 +332,11 @@ ESP-IDF, the official SDK from Espressif, can be downloaded and installed as GIT
``` ```
cd $HOME/esp cd $HOME/esp
git clone --recursive https://github.com/espressif/esp-idf.git git clone https://github.com/espressif/esp-idf.git
cd esp-idf cd esp-idf
git checkout -q f198339ec09e90666150672884535802304d23ec git checkout f198339ec09e90666150672884535802304d23ec
cd components/esp32/lib git submodule init
git checkout -q 534a9b14101af90231d40a4f94924d67bc848d5f git submodule update
``` ```
@note Please take care to checkout correct branches which were used for the port. Newer versions might also work but were not tested. @note Please take care to checkout correct branches which were used for the port. Newer versions might also work but were not tested.