-
Notifications
You must be signed in to change notification settings - Fork 0
Install_Esp32
Julian Bustamante edited this page Sep 1, 2021
·
1 revision
-
Configure properly your toolchain
-
Download the ESPSDK
mkdir -p ~/esp cd ~/esp git clone --recursive https://github.com/espressif/esp-idf.git -
Set up the tools:
-
Linux and Mac OS
cd ~/esp/esp-idf ./install.sh esp32 -
Windows
cd %userprofile%\esp\esp-idf install.bat esp32
-
Linux and Mac OS
-
Set up the environment variables:
-
Linux and Mac OS
. $HOME/esp/esp-idf/export.sh -
Windows
%userprofile%\esp\esp-idf\export.bat
-
Linux and Mac OS
idf.py menuconfig
idf.py build
Remember set up the environment variables runing get_idf to set up or refresh the esp-idf environment in any terminal session
alias get_idf='. $HOME/esp/esp-idf/export.sh'
idf.py flash
Remember to set your desired desired bitrate on the MONITOR_BAUD, if not defaults to 74880