Open
Description
Is your feature request related to a problem?
On "FreeRTOS.h" is includes a custom
/* Application specific configuration options. */
#include "FreeRTOSConfig.h"
Which on esp-idf is its own FreeRTOS port
/opt/esp/idf/components/freertos/config/include/freertos/FreeRTOSConfig.h
which then includes
#include "sdkconfig.h"
that is a "Automatically generated file" and placed on build folder.
Describe the solution you'd like.
A way to include our custom include on some particular project.
Describe alternatives you've considered.
I considered to append an #include to the automatic generated .h file on the build, but that is not elegant.
Additional context.
This allows to take more advanced use and extend of the FreeRTOS. Eg. setup trace defines.