Thank you for sharing this ESP32 Manager. It's a useful framework with lots of features that can be customized.
I'm curious about the `esp32m.py` script though. I was getting errors trying to use it per the Quick Start instructions for compiling the example:
Code: Select all
python ../../esp32m.py --path idf /path/to/esp-idf build flash monitor
The script will append the string `esp-idf` to `/path/to/esp-idf` for some reason. This seems like an incorrect thing to do for a couple of reasons. Firstly, the assumption is that `/path/to/esp-idf` is already the complete path to the user's esp-idf folder. Secondly, this folder isn't always named `esp-idf`. Mine, for example, is called, `.../esp-idf-v4.4`. I modified the script to just omit appending the `esp-idf` string to the path and then it worked.