I am in the process to install and configure the ESP-IDF toolchain and libraries to develop the ESP32 microcontroller using the Wrover development board. I am using Xubuntu 18.04 and have done the following steps:
- Gone through all steps of the "Getting Started Guide" and installed ESP-IDF and toolchain
- Installed Eclipse CDT 2019.12 and the IDF Eclipse Plugin according to this guide
- Gone through the debugging installation instructions
- Finally configured GDB Hardware Debugging in Eclipse CDT according to these instructions
This was a long way and I was very happy first, since everything worked fine; from building to debugging and stepping through the code.
I cannot remember what I did next, but suddenly I got the following error in Eclipse CDT when trying to build one of the example projects (like the blink or hello-world examples):
The last thing I remember to have edited before I got this error were the following two lines in ~/.profile:
Code: Select all
export IDF_PATH="/home/nicolas/Workspace/Eclipse/CDT/esp-idf"
. $IDF_PATH/export.sh
Any idea what my setup have might screwed up?
Let me know if you need more information to help me out. I am really looking forward to get my hands dirty with ESP-IDF, but it currently won't let me to do so...