mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
freertos: Move FreeRTOSConfig_arch.h
This commit moves the FreeRTOSConfig_arc.h to the "esp_additions" directory so that they can also be used for SMP FreeRTOS builds.
This commit is contained in:
parent
5032f834f2
commit
05bda6595d
@ -33,10 +33,11 @@ set(srcs
|
||||
|
||||
set(include_dirs
|
||||
"${kernel_dir}/include" # FreeRTOS headers via #include "freertos/xxx.h"
|
||||
"${kernel_dir}/portable/${arch}/include" # For arch-specific FreeRTOSConfig_arch.h in portable/<arch>/include
|
||||
"${kernel_dir}/portable/${arch}/include" # For arch-specific #include "freertos/portmacro.h"
|
||||
"esp_additions/include/freertos" # For files with #include "FreeRTOSConfig.h"
|
||||
"esp_additions/include") # For files with #include "freertos/FreeRTOSConfig.h"
|
||||
"esp_additions/include" # For files with #include "freertos/FreeRTOSConfig.h"
|
||||
# or #include "freertos/task_snapshot.h"
|
||||
"esp_additions/arch/${arch}/include") # For #include "freertos/FreeRTOSConfig_arch.h"
|
||||
|
||||
set(private_include_dirs
|
||||
"${kernel_dir}/portable/${arch}/include/freertos"
|
||||
|
@ -10,7 +10,8 @@ set(include_dirs
|
||||
"${kernel_dir}/include"
|
||||
"${original_freertos_dir}/esp_additions/include"
|
||||
"${original_freertos_dir}/esp_additions/include/freertos"
|
||||
"${kernel_dir}/portable/linux/include" # For FreeRTOSConfig_arch.h
|
||||
"${original_freertos_dir}/esp_additions/arch/linux/include" # For "freertos/FreeRTOSConfig_arch.h"
|
||||
"${kernel_dir}/portable/linux/include" # For "freertos/portmacro.h"
|
||||
"${kernel_dir}/include/freertos" # this is due to the way includes are generated in CMock (without freertos prefix)
|
||||
)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user