š
2.1.3.
Building Firmware
1.
Create a directory to store a new project.
mkdir ~/Workspace
cd ~/Workspace
2.
Download the latest ESP32 RTOS SDK.
git clone https://github.com/espressif/ESP32_RTOS_SDK.git
3.
Create a directory to store the.bin ļ¬les compiled.
mkdir āp ~/Workspace/ESP32_BIN
4.
Set the PATHs variable to point to the SDK and BIN ļ¬les.
export SDK_PATH=~/Workspace/ESP32_RTOS_SDK
export BIN_PATH=~/Workspace/ESP32_BIN
5.
Start to compile ļ¬les.
cd ~/Workspace/project_template
make clean
make
š
Notesļ¼
1.
For the package components of the SDK, refer to ā1.3 Package Componentsā.
2.
You can build customized project according the ESP32_RTOS_SDK/examples/project_template.