mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
7b41d6004a
When building for CONFIG_FREERTOS_SMP, "idf_additions.h" was previously implicitly included by "task.h" so that other ESP-IDF components still have access to IDF API additions without needing to include "idf_additions.h" directly. However, some FreeRTOS headers (e.g., queue.h) will include task.h before declaring any types (e.g., QueueHandle_t). Thus if any of those types are used in idf_additions.h, we get a missing type error. This commit moves the implicity include of idf_additions.h to FreeRTOS.h |
||
---|---|---|
.. | ||
esp_additions | ||
FreeRTOS-Kernel | ||
FreeRTOS-Kernel-SMP | ||
test_apps | ||
app_startup.c | ||
CMakeLists.txt | ||
FreeRTOS-openocd.c | ||
heap_idf.c | ||
Kconfig | ||
linker_common.lf | ||
linker_smp.lf | ||
linker.lf | ||
port_common.c | ||
sdkconfig.rename |