Search found 34 matches
- Wed Sep 18, 2024 10:46 am
- Forum: IDEs for ESP-IDF
- Topic: Updated user guide to create, build & debug esp32s3 using VSCode or PowerShell
- Replies: 0
- Views: 1682
Updated user guide to create, build & debug esp32s3 using VSCode or PowerShell
Documents.zip I have updated my user guide to create, build & debug esp32s3 using VSCode or PowerShell. it's based on weeks of running into problems and finding solutions in obscure Internet locations. I hope it's useful, if anyone spots any errors please let me know and I will correct them. There ...
- Sat Sep 07, 2024 4:14 pm
- Forum: ESP-IDF
- Topic: Warning message re parsing
- Replies: 1
- Views: 779
Re: Warning message re parsing
I worked it out, the warning is because at that point in the process the build folder does not yet exist consequently /build/compile_commands.json" could not be parsed.
- Sat Sep 07, 2024 10:45 am
- Forum: ESP32 Arduino
- Topic: Has anyone got Arduino as a component working with latest IDE?
- Replies: 2
- Views: 1519
Re: Has anyone got Arduino as a component working with latest IDE?
Many thanks, I'll try that
- Sat Sep 07, 2024 6:18 am
- Forum: ESP-IDF
- Topic: Problem adding a component
- Replies: 7
- Views: 1601
Re: Problem adding a component
Thanks for your suggestions, it helped me to realise what I was doing wrong.
I was doing this:
1: Add dependency
2: Add #include
3: Build = failed!!!!!
The correct way is:
1: Add dependency
2: Build - to add managed components
3: Add #include
4: Build = success
I was doing this:
1: Add dependency
2: Add #include
3: Build = failed!!!!!
The correct way is:
1: Add dependency
2: Build - to add managed components
3: Add #include
4: Build = success
- Fri Sep 06, 2024 4:51 pm
- Forum: ESP-IDF
- Topic: Problem adding a component
- Replies: 7
- Views: 1601
Re: Problem adding a component
Are you saying that one must run set-target and build using idf.py rather than do this in the ESP-IDF VSCode extension from the buttons in the status bar?
- Fri Sep 06, 2024 9:08 am
- Forum: ESP-IDF
- Topic: Warning message re parsing
- Replies: 1
- Views: 779
Warning message re parsing
Is there a solution to this warning message: "e:\Users\Steven\Documents\GitHub\ESP-IDF\LED_strip/build/compile_commands.json" could not be parsed. 'includePath' from c_cpp_properties.json in folder 'LED_STRIP' will be used instead. ??
Thank you
Thank you
- Fri Sep 06, 2024 9:04 am
- Forum: ESP-IDF
- Topic: Problem adding a component
- Replies: 7
- Views: 1601
Re: Problem adding a component
If I create a new project based on the sample_project it builds, if I then add a component e.g. led_strip using the Python command idf.py add-dependency "espressif/led_strip^2.5.5" it creates the file idf.component.yml in which there are references to led_strip, but it does not build as the folder m...
- Fri Sep 06, 2024 7:09 am
- Forum: ESP-IDF
- Topic: Problem adding a component
- Replies: 7
- Views: 1601
Problem adding a component
If I create a new project called blink from the blink example I have no problem building it. However if I create a minimal new project using the sample project, again I can build it but if I try to add a component using the command listed in the ESP Registry i.e. idf.py add-dependency "espressif/led...
- Thu Sep 05, 2024 8:40 am
- Forum: ESP32 Arduino
- Topic: Has anyone got Arduino as a component working with latest IDE?
- Replies: 2
- Views: 1519
Has anyone got Arduino as a component working with latest IDE?
I'm using the Espressif IDF extension 1.8.1 on VSCode 1.92.2 and arduino esp-32 3.0.4 in the component folder, but I can not build the simplest code e.g. the one included in the list of templates called arduino-as-component. I get lots of messages about Ninja failure and missing paths but I must be ...
- Thu Sep 05, 2024 8:13 am
- Forum: ESP32 Arduino
- Topic: ESP32-S3 USB Port uploads but serial comms are not working.
- Replies: 5
- Views: 3113
Re: ESP32-S3 USB Port uploads but serial comms are not working.
Hello, I also get confused when dealing with COM ports of S3. I use these ports with MIDI library, and I haven't yet made it clear nor found a universal solution for different versions of ESP Arduino core. But here's what I've found for now: Core 2.0.17 When a board doesn't have a dedicated UART ch...