Search found 9 matches
- Tue Dec 01, 2020 7:50 pm
- Forum: ESP-IDF
- Topic: #include "esp_spiffs.h" file not found
- Replies: 3
- Views: 451
Re: #include "esp_spiffs.h" file not found
Hei Guys, as I was able to solve this after reading your comments I wanted to line out the solution: In the Following you can see the CMakeLists.txt of the component I'm developing: idf_component_register(SRCS "MKSPIFFS.cpp" INCLUDE_DIRS "." REQUIRES "MKException" "spiffs") Adding the "spiffs" after...
- Tue Dec 01, 2020 2:16 pm
- Forum: ESP-IDF
- Topic: #include "esp_spiffs.h" file not found
- Replies: 3
- Views: 451
#include "esp_spiffs.h" file not found
Hei Guys, on compiling my project in vscode with esp-idf extension v 4.1 I get No such file or directory error. But the file is there. My CPP Config is: { "configurations": [ { "name": "Win32", "cStandard": "c11", "cppStandard": "c++17", "includePath": [ "${config:idf.espIdfPathWin}/components/**", ...
- Tue Sep 15, 2020 2:25 pm
- Forum: IDEs for ESP-IDF
- Topic: VSCODE ESP-IDF Plugin Debug Problem
- Replies: 5
- Views: 1235
Re: VSCODE ESP-IDF Plugin Debug Problem
Debugging works now but the behaviour is strange.
The Debugger Stopps execution on lines where no breakpoints are and doesn't stop on breakpoints.
What the debugger does and what i was expecting is to stop on the beginning of main.
Any Suggestions to solve this issu?
Manuel
The Debugger Stopps execution on lines where no breakpoints are and doesn't stop on breakpoints.
What the debugger does and what i was expecting is to stop on the beginning of main.
Any Suggestions to solve this issu?
Manuel
- Tue Sep 15, 2020 1:55 pm
- Forum: IDEs for ESP-IDF
- Topic: VSCODE ESP-IDF Plugin Debug Problem
- Replies: 5
- Views: 1235
Re: VSCODE ESP-IDF Plugin Debug Problem
This is so awesome. Switching to 0.9.0.2. helped.
As a note: I wasn't able to solve that via powershell but solved it in the command line running the python commands
Thank you very much.
Manuel
As a note: I wasn't able to solve that via powershell but solved it in the command line running the python commands
Thank you very much.
Manuel
- Mon Sep 14, 2020 8:06 pm
- Forum: IDEs for ESP-IDF
- Topic: VSCODE ESP-IDF Plugin Debug Problem
- Replies: 5
- Views: 1235
VSCODE ESP-IDF Plugin Debug Problem
hei Guys, I'm facing some issues with the Debugger of the VisualStudioCode ESP-IDF Estension. I installed my Debugger Shield and the according Driver. OpenOCD Server can be started using the user interface. Hitting F5 (to launch the default esp-idf debugger configuration) I receive the following err...
- Fri Apr 03, 2020 11:48 am
- Forum: ESP-IDF
- Topic: undefined reference
- Replies: 3
- Views: 2770
Re: undefined reference
What I did now:
Changed
CMakeLists.txt of I2CKeypad:
idf_component_register(SRCS "I2CKeypad.cpp" INCLUDE_DIRS "." "../I2CPeripheral")
to
idf_component_register(SRCS "I2CKeypad.cpp" INCLUDE_DIRS "." REQUIRES I2CPeripheral)
but the error is still there.
Changed
CMakeLists.txt of I2CKeypad:
idf_component_register(SRCS "I2CKeypad.cpp" INCLUDE_DIRS "." "../I2CPeripheral")
to
idf_component_register(SRCS "I2CKeypad.cpp" INCLUDE_DIRS "." REQUIRES I2CPeripheral)
but the error is still there.
- Mon Mar 30, 2020 9:07 pm
- Forum: IDEs for ESP-IDF
- Topic: VS Code Extension, includes missing, menuconfig not showing up [IDFGH-3001]
- Replies: 4
- Views: 5015
Re: VS Code Extension, includes missing, menuconfig not showing up
posted this in wrong thread, please delete
- Mon Mar 30, 2020 8:24 pm
- Forum: ESP-IDF
- Topic: undefined reference
- Replies: 3
- Views: 2770
undefined reference
Hei Guys, I'm a beginner in cmake as I'm working with Visual Studio normally. I'm trying to set up a project with two components, one inherits from the other. The Structure of the Tree is attached. The issue is that I get an error "undefined reference" for the Component I want to inherit from. CMake...
- Sat Jan 25, 2020 2:35 pm
- Forum: IDEs for ESP-IDF
- Topic: VS Code Extension, includes missing, menuconfig not showing up [IDFGH-3001]
- Replies: 4
- Views: 5015
VS Code Extension, includes missing, menuconfig not showing up [IDFGH-3001]
Hello Guys, I' struggling with vs code extension and this is so annoying. I'm using python 3.8 32-Bit Version and git 2.21.0 for windows. Setting up esp-idf and tools is working well. I'm using following esp-idf tools setup: xtensa-esp32-elf: esp32-2019r1-8.2.0 xtensa-esp32s2-elf: esp32s2-dev-4-g3a6...