A github template for starting projects based on the ESP-IDF.
- Use the
--recursiveflag when cloning to pick up the ESP-IDF
- ESP-IDF Tools
cd esp-idfexport IDF_GITHUB_ASSETS="dl.espressif.com/github_assets"./install.sh
$ make menuconfigor
$ idf.py menuconfig$ make -j8 # Or pick your favorite parallel numberor
$ idf.py build$ make -j8 flash monitoror
$ idf.py flash monitor$ make monitoror
$ idf.py monitorExit with Ctrl + ].
$ make erase_flashor
$ idf.py erase-flashclang-format is used for code formatting.
$ make format