Search found 16 matches

by veelox
Fri Jun 25, 2021 6:04 pm
Forum: ESP-IDF
Topic: Debug session do nothing, vscode, jlink, gdb
Replies: 1
Views: 2240

Re: Debug session do nothing, vscode, jlink, gdb

Here is the launch.json
by veelox
Fri Jun 25, 2021 6:03 pm
Forum: ESP-IDF
Topic: Debug session do nothing, vscode, jlink, gdb
Replies: 1
Views: 2240

Debug session do nothing, vscode, jlink, gdb

HI,

I am trying to configure the debugger in Visual Studio Code with a JLink. I am to a point where the debug session starts but nothing happen. Here is my Task.json, settings,json, c_cpp_properties.json and launch.json. Just note thats in settings the error is there only so i could fit everyting ...
by veelox
Fri Jun 11, 2021 6:33 pm
Forum: IDEs for ESP-IDF
Topic: EBUSY error on full clean
Replies: 1
Views: 4877

Re: EBUSY error on full clean

Hi,

I have the same error : EBUSY : resource busy or locked, rmdir, on full clean
Have you found a way to solve this?

Thanks,
Veelox
by veelox
Sat Dec 05, 2020 3:11 pm
Forum: ESP-IDF
Topic: spi driver, spi_get_trans_result stuck
Replies: 2
Views: 3437

Re: spi driver, spi_get_trans_result stuck

Well yes its working, thank you!!
by veelox
Fri Dec 04, 2020 7:08 pm
Forum: ESP-IDF
Topic: spi driver, spi_get_trans_result stuck
Replies: 2
Views: 3437

spi driver, spi_get_trans_result stuck

Hi,

I am trying to write an SPI driver for my project, but cant seems to work. I've tried to use spi_device_transmit, spi_device_polling_transmit, queue_trans, get_trans but i never seem to be able to get it working. I've tried multiple different bus and device config. But it is always stuck ...
by veelox
Tue Dec 01, 2020 6:22 pm
Forum: ESP-IDF
Topic: #include "esp_spiffs.h" file not found
Replies: 3
Views: 7809

Re: #include "esp_spiffs.h" file not found

I previously had problem to add components until someone here made me realize the CMakeLists.txt needed to add components :
idf_component_register(SRCS "....c/h" INCLUDE_DIRS "." REQUIRES componentX) componentX being the folder inside component folder.

Now i have again this problem. I added another ...
by veelox
Tue Dec 01, 2020 5:06 pm
Forum: ESP-IDF
Topic: FreeRTOS.h no such file or directory
Replies: 1
Views: 6421

Re: FreeRTOS.h no such file or directory

If you're on ESP IDF, do you have any CMakeLists.txt with idf_component_register(SRCS ".....c" REQUIRES freertos)
by veelox
Tue Dec 01, 2020 5:03 pm
Forum: ESP-IDF
Topic: #include gives no such file or directory (IDFGH-4287)
Replies: 8
Views: 10082

Re: #include gives no such file or directory (IDFGH-4287)

up, still havent been able to figure out why
by veelox
Fri Nov 27, 2020 1:59 pm
Forum: ESP-IDF
Topic: #include gives no such file or directory (IDFGH-4287)
Replies: 8
Views: 10082

Re: #include gives no such file or directory (IDFGH-4287)

MAIN FOLDER
- main.cpp/main.h
- CMakeLists.txt :

idf_component_register(SRCS "main.cpp"
INCLUDE_DIRS "."
REQUIRES STC3115_Drivers Filters ICM_20948 ibNavSix driver esp32)


COMPONENT FOLDER
- STC3115_Drivers folder
- Filters folder
- ICM_20948 folder
- ibNavSix folder
- BME680 folder ...
by veelox
Thu Nov 26, 2020 4:09 pm
Forum: ESP-IDF
Topic: #include gives no such file or directory (IDFGH-4287)
Replies: 8
Views: 10082

Re: #include gives no such file or directory (IDFGH-4287)

Is there any particular reason why adding another component gives me again no such file or directory? Even with the REQUIRES field completed in the idf_component_register?

ex: component folder with
- component1 folder
- CMakeLists.txt
- .c/.h
- component2 folder
- CMakeLists.txt
- .c/.h ...

Go to advanced search