2019-08-08 01:33:45 -04:00
|
|
|
if(BOOTLOADER_BUILD)
|
|
|
|
# bootloader only needs FreeRTOS for config, not for anything else
|
|
|
|
idf_component_register()
|
|
|
|
return()
|
|
|
|
endif()
|
|
|
|
|
2020-11-05 23:03:21 -05:00
|
|
|
idf_build_get_property(target IDF_TARGET)
|
|
|
|
|
2021-08-04 08:33:44 -04:00
|
|
|
if(CONFIG_IDF_TARGET_ARCH_XTENSA)
|
2020-11-05 23:03:21 -05:00
|
|
|
set(srcs
|
|
|
|
"port/xtensa/port.c"
|
|
|
|
"port/xtensa/portasm.S"
|
|
|
|
"port/xtensa/xtensa_context.S"
|
|
|
|
"port/xtensa/xtensa_init.c"
|
|
|
|
"port/xtensa/xtensa_overlay_os_hook.c"
|
|
|
|
"port/xtensa/xtensa_vector_defaults.S"
|
|
|
|
"port/xtensa/xtensa_vectors.S")
|
|
|
|
|
|
|
|
set(include_dirs
|
|
|
|
include
|
2021-09-08 04:53:57 -04:00
|
|
|
include/esp_additions/freertos # For files with #include "FreeRTOSConfig.h"
|
|
|
|
port/xtensa/include # For including arch-specific FreeRTOSConfig_arch.h in port/<arch>/include
|
|
|
|
include/esp_additions) # For files with #include "freertos/FreeRTOSConfig.h"
|
2020-11-05 23:03:21 -05:00
|
|
|
|
|
|
|
set(private_include_dirs
|
|
|
|
port/xtensa/include/freertos
|
|
|
|
port/xtensa
|
2021-08-04 08:33:44 -04:00
|
|
|
port/priv_include
|
2020-11-05 23:03:21 -05:00
|
|
|
.)
|
|
|
|
|
2021-08-04 08:33:44 -04:00
|
|
|
elseif(CONFIG_IDF_TARGET_ARCH_RISCV)
|
2020-11-05 23:03:21 -05:00
|
|
|
set(srcs
|
|
|
|
"port/riscv/port.c"
|
|
|
|
"port/riscv/portasm.S")
|
|
|
|
|
|
|
|
set(include_dirs
|
|
|
|
include
|
2021-09-08 04:53:57 -04:00
|
|
|
include/esp_additions/freertos # For files with #include "FreeRTOSConfig.h"
|
|
|
|
port/riscv/include # For including arch-specific FreeRTOSConfig_arch.h in port/<arch>/include
|
|
|
|
include/esp_additions) # For files with #include "freertos/FreeRTOSConfig.h"
|
2020-11-05 23:03:21 -05:00
|
|
|
|
|
|
|
set(private_include_dirs
|
|
|
|
port/riscv/include/freertos
|
|
|
|
port/riscv
|
2021-08-04 08:33:44 -04:00
|
|
|
port/priv_include
|
2020-11-05 23:03:21 -05:00
|
|
|
.)
|
|
|
|
|
|
|
|
endif()
|
2020-01-17 09:44:13 -05:00
|
|
|
|
2020-11-10 02:40:01 -05:00
|
|
|
list(APPEND srcs
|
2021-08-03 22:56:37 -04:00
|
|
|
"esp_additions/task_snapshot.c"
|
2020-11-05 23:03:21 -05:00
|
|
|
"port/port_common.c"
|
2021-08-04 08:33:44 -04:00
|
|
|
"port/port_systick.c"
|
2019-06-21 02:29:32 -04:00
|
|
|
"croutine.c"
|
|
|
|
"event_groups.c"
|
|
|
|
"list.c"
|
|
|
|
"queue.c"
|
|
|
|
"tasks.c"
|
2019-11-28 13:27:47 -05:00
|
|
|
"timers.c"
|
|
|
|
"stream_buffer.c"
|
2020-11-09 05:08:29 -05:00
|
|
|
"FreeRTOS-openocd.c"
|
|
|
|
"freertos_v8_compat.c")
|
2020-01-17 09:44:13 -05:00
|
|
|
|
2021-08-03 22:56:37 -04:00
|
|
|
list(APPEND private_include_dirs
|
2022-07-13 12:28:59 -04:00
|
|
|
"include/freertos"
|
|
|
|
"esp_additions/private_include") # For include "freertos_tasks_c_additions.h"
|
2021-08-03 22:56:37 -04:00
|
|
|
|
2020-02-26 07:21:59 -05:00
|
|
|
if(CONFIG_ESP32_IRAM_AS_8BIT_ACCESSIBLE_MEMORY)
|
2020-11-05 23:03:21 -05:00
|
|
|
list(APPEND srcs "port/xtensa/xtensa_loadstore_handler.S")
|
|
|
|
endif()
|
2020-02-26 07:21:59 -05:00
|
|
|
|
2021-08-04 08:33:44 -04:00
|
|
|
# esp_timer is required by FreeRTOS because we use esp_tiemr_get_time() to do profiling
|
2020-12-21 12:17:42 -05:00
|
|
|
# app_trace is required by FreeRTOS headers only when CONFIG_APPTRACE_SV_ENABLE=y,
|
2021-08-04 08:33:44 -04:00
|
|
|
# REQUIRES can't depend on config options, so always require it.
|
|
|
|
set(required_components app_trace esp_timer)
|
|
|
|
|
2019-04-28 03:38:23 -04:00
|
|
|
idf_component_register(SRCS "${srcs}"
|
2020-01-17 09:44:13 -05:00
|
|
|
INCLUDE_DIRS ${include_dirs}
|
2020-11-10 02:40:01 -05:00
|
|
|
PRIV_INCLUDE_DIRS ${private_include_dirs}
|
2019-04-28 03:38:23 -04:00
|
|
|
LDFRAGMENTS linker.lf
|
2020-11-05 23:03:21 -05:00
|
|
|
REQUIRES ${required_components}
|
2021-03-19 08:03:13 -04:00
|
|
|
PRIV_REQUIRES soc esp_pm)
|
2020-11-10 02:40:01 -05:00
|
|
|
|
2019-12-02 01:41:33 -05:00
|
|
|
idf_component_get_property(COMPONENT_DIR freertos COMPONENT_DIR)
|
|
|
|
idf_component_set_property(freertos ORIG_INCLUDE_PATH "${COMPONENT_DIR}/include/freertos/")
|
2018-01-11 21:49:13 -05:00
|
|
|
|
2019-10-16 08:23:05 -04:00
|
|
|
if(CONFIG_FREERTOS_DEBUG_OCDAWARE)
|
|
|
|
target_link_libraries(${COMPONENT_LIB} INTERFACE "-Wl,--undefined=uxTopUsedPriority")
|
|
|
|
endif()
|
2018-08-16 01:01:43 -04:00
|
|
|
|
|
|
|
set_source_files_properties(
|
|
|
|
tasks.c
|
|
|
|
event_groups.c
|
|
|
|
timers.c
|
|
|
|
queue.c
|
2019-11-28 13:27:47 -05:00
|
|
|
stream_buffer.c
|
2018-08-16 01:01:43 -04:00
|
|
|
PROPERTIES COMPILE_DEFINITIONS
|
|
|
|
_ESP_FREERTOS_INTERNAL
|
|
|
|
)
|
2020-02-05 09:40:15 -05:00
|
|
|
|
2020-11-10 02:40:01 -05:00
|
|
|
# The freertos component provides the `start_app` and `start_app_other_cores`
|
|
|
|
# if it is included in the build. It then calls `app_main`
|
|
|
|
# from the main task created, which must be provided by the user.
|
2020-06-10 09:13:31 -04:00
|
|
|
# Like for `start_app` and `start_app_other_cores`,
|
|
|
|
# we can't establish dependency on what we don't yet know, so we force the
|
|
|
|
# linker to not drop this symbol.
|
2020-11-10 02:40:01 -05:00
|
|
|
target_link_libraries(${COMPONENT_LIB} INTERFACE "-u app_main")
|