I'm facing the same issue, I created this ticket:
https://github.com/espressif/esp-idf/issues/15971
I managed to append an include file to sdkconfig.h but the problem is that the freeRTOS build can't "see" other paths and I'm getting difficult to #include <searchable files>
it would work with ...
Search found 12 matches
- Sat May 17, 2025 9:08 am
- Forum: ESP-IDF
- Topic: Impossible to cleanly implement the FreeRTOS macro traceTASK_CREATE() in ESP-IDF?
- Replies: 2
- Views: 1143
- Wed Jan 15, 2025 7:55 am
- Forum: ESP-IDF
- Topic: Multiple Devices on SPI Bus
- Replies: 3
- Views: 2051
Re: Multiple Devices on SPI Bus
Same question:
esp_err_t SPI_MASTER_ISR_ATTR spi_device_acquire_bus(spi_device_t *device, TickType_t wait)
{
..
SPI_CHECK(!spi_bus_device_is_polling(device), "Cannot acquire bus when a polling transaction is in progress.", ESP_ERR_INVALID_STATE);
...
esp_err_t ret = spi_bus_lock_acquire_start ...
esp_err_t SPI_MASTER_ISR_ATTR spi_device_acquire_bus(spi_device_t *device, TickType_t wait)
{
..
SPI_CHECK(!spi_bus_device_is_polling(device), "Cannot acquire bus when a polling transaction is in progress.", ESP_ERR_INVALID_STATE);
...
esp_err_t ret = spi_bus_lock_acquire_start ...
- Thu Dec 19, 2024 9:09 am
- Forum: General Discussion
- Topic: usb-uart expected max transmission rate
- Replies: 0
- Views: 1599
usb-uart expected max transmission rate
On ESP32 with emulated USB-UART, what is the expected maximum transmission rate?
I believe form the side of the host OS driver, the baudrate setting has no effect as it should be limited by USB transmission with the device?
I believe form the side of the host OS driver, the baudrate setting has no effect as it should be limited by USB transmission with the device?
- Tue Dec 03, 2024 4:36 pm
- Forum: ESP-IDF
- Topic: Can I copy the image of a running partition to another ESP via OTA?
- Replies: 0
- Views: 756
Can I copy the image of a running partition to another ESP via OTA?
If I have a running ESP, which I have access to its own running partition, can I directly copy that running partition (eg: via esp_partition_read), send all the data to another ESP via OTA (eg: using some esp library) ?
- Tue Dec 03, 2024 4:29 pm
- Forum: ESP-IDF
- Topic: mktime exception after update to idf 5.0
- Replies: 4
- Views: 3062
Re: mktime exception after update to idf 5.0
Is that app_main running the FreerRTOS or not?There's nothing wrong with it.Code: Select all
void app_main() { .... }
On my case the happened when I suspend all the OS tasks, like a "critical section"Eg: tasks can't be suspended while using these functions.
- Mon Nov 25, 2024 3:06 pm
- Forum: ESP-IDF
- Topic: What happens if two fw updates without mark as valid?
- Replies: 0
- Views: 781
What happens if two fw updates without mark as valid?
What happens if after an firmware update, I update another one without marking the current one as valid?
- Tue Oct 01, 2024 1:18 pm
- Forum: ESP-IDF
- Topic: mktime exception after update to idf 5.0
- Replies: 4
- Views: 3062
Re: mktime exception after update to idf 5.0
I had a similar issue, I found that OS must be running while to access this functions.
Eg: tasks can't be suspended while using these functions.
Eg: tasks can't be suspended while using these functions.
- Sun Sep 29, 2024 10:29 am
- Forum: IDEs for ESP-IDF
- Topic: VSCode, Linux, Create new project, can't get write permissions
- Replies: 1
- Views: 4120
VSCode, Linux, Create new project, can't get write permissions
I'm using (latest everything) VSCode, IDF extention, on Linux(Mint),
I create a project using the wizard, it creates a container, I open the workspace in container: I can't have write access to the files.
$ ll
total 20
drwxrwxr-x 4 ubuntu ubuntu 4096 Sep 29 10:06 ./
drwxr-xr-x 1 root root 4096 Sep ...
I create a project using the wizard, it creates a container, I open the workspace in container: I can't have write access to the files.
$ ll
total 20
drwxrwxr-x 4 ubuntu ubuntu 4096 Sep 29 10:06 ./
drwxr-xr-x 1 root root 4096 Sep ...
- Sat Sep 28, 2024 1:52 pm
- Forum: ESP-IDF
- Topic: Using Cpputest with ESP-IDF
- Replies: 1
- Views: 2443
Re: Using Cpputest with ESP-IDF
How did you implemented?
Two years later, still not much info on internet about it..
Two years later, still not much info on internet about it..
- Thu Aug 29, 2024 12:58 pm
- Forum: ESP-IDF
- Topic: idf_component_register, externalproject_add with IDF?
- Replies: 1
- Views: 913
idf_component_register, externalproject_add with IDF?
I have a component
I'm using idf_component_register and then I use externalproject_add.
It all builds, link and runs ok until I start to include ESP32 IDF libraries
then I get errors such as
fatal error: freertos/FreeRTOS.h: No such file or directory
How do I build external components but still ...
I'm using idf_component_register and then I use externalproject_add.
It all builds, link and runs ok until I start to include ESP32 IDF libraries
then I get errors such as
fatal error: freertos/FreeRTOS.h: No such file or directory
How do I build external components but still ...