2019-08-08 05:33:45 +00:00
|
|
|
if(BOOTLOADER_BUILD)
|
|
|
|
# bootloader only needs FreeRTOS for config, not for anything else
|
|
|
|
idf_component_register()
|
|
|
|
return()
|
|
|
|
endif()
|
|
|
|
|
|
|
|
set(srcs
|
2020-01-17 14:44:13 +00:00
|
|
|
"xtensa/port.c"
|
|
|
|
"xtensa/portasm.S"
|
|
|
|
"xtensa/xtensa_context.S"
|
|
|
|
"xtensa/xtensa_init.c"
|
|
|
|
"xtensa/xtensa_intr_asm.S"
|
|
|
|
"xtensa/xtensa_intr.c"
|
|
|
|
"xtensa/xtensa_overlay_os_hook.c"
|
|
|
|
"xtensa/xtensa_vector_defaults.S"
|
|
|
|
"xtensa/xtensa_vectors.S")
|
|
|
|
|
|
|
|
list(APPEND srcs
|
2019-06-21 06:29:32 +00:00
|
|
|
"croutine.c"
|
|
|
|
"event_groups.c"
|
|
|
|
"FreeRTOS-openocd.c"
|
|
|
|
"list.c"
|
|
|
|
"queue.c"
|
|
|
|
"tasks.c"
|
2020-01-17 14:44:13 +00:00
|
|
|
"timers.c")
|
|
|
|
|
|
|
|
set(include_dirs
|
|
|
|
include
|
|
|
|
xtensa/include)
|
|
|
|
|
|
|
|
set(private_include_dirs
|
|
|
|
include/freertos
|
|
|
|
xtensa/include/freertos
|
|
|
|
xtensa
|
|
|
|
.)
|
2019-06-21 06:29:32 +00:00
|
|
|
|
2020-02-26 12:21:59 +00:00
|
|
|
if(CONFIG_ESP32_IRAM_AS_8BIT_ACCESSIBLE_MEMORY)
|
|
|
|
list(APPEND srcs "xtensa/xtensa_loadstore_handler.S")
|
|
|
|
endif()
|
|
|
|
|
2018-09-21 06:58:34 +00:00
|
|
|
# app_trace is required by FreeRTOS headers only when CONFIG_SYSVIEW_ENABLE=y,
|
|
|
|
# but requirements can't depend on config options, so always require it.
|
2019-04-28 07:38:23 +00:00
|
|
|
idf_component_register(SRCS "${srcs}"
|
2020-01-17 14:44:13 +00:00
|
|
|
INCLUDE_DIRS ${include_dirs}
|
|
|
|
PRIV_INCLUDE_DIRS ${private_include_dirs}
|
2019-04-28 07:38:23 +00:00
|
|
|
LDFRAGMENTS linker.lf
|
2020-02-06 06:00:18 +00:00
|
|
|
REQUIRES app_trace esp_timer
|
2019-04-28 07:38:23 +00:00
|
|
|
PRIV_REQUIRES soc)
|
2019-12-02 06:41:33 +00:00
|
|
|
|
|
|
|
idf_component_get_property(COMPONENT_DIR freertos COMPONENT_DIR)
|
|
|
|
idf_component_set_property(freertos ORIG_INCLUDE_PATH "${COMPONENT_DIR}/include/freertos/")
|
2018-01-12 02:49:13 +00:00
|
|
|
|
2019-10-16 12:23:05 +00:00
|
|
|
if(CONFIG_FREERTOS_DEBUG_OCDAWARE)
|
|
|
|
target_link_libraries(${COMPONENT_LIB} INTERFACE "-Wl,--undefined=uxTopUsedPriority")
|
|
|
|
endif()
|
2018-08-16 05:01:43 +00:00
|
|
|
|
|
|
|
set_source_files_properties(
|
|
|
|
tasks.c
|
|
|
|
event_groups.c
|
|
|
|
timers.c
|
|
|
|
queue.c
|
|
|
|
PROPERTIES COMPILE_DEFINITIONS
|
|
|
|
_ESP_FREERTOS_INTERNAL
|
|
|
|
)
|