2023-03-30 00:31:26 +07:00
|
|
|
idf_component_register(SRCS family.c
|
2020-11-27 22:31:47 +07:00
|
|
|
INCLUDE_DIRS "." "${BOARD}"
|
2020-04-09 00:06:18 +07:00
|
|
|
PRIV_REQUIRES "driver"
|
2020-11-27 22:31:47 +07:00
|
|
|
REQUIRES freertos src led_strip)
|
2020-04-09 00:06:18 +07:00
|
|
|
|
2021-03-09 11:29:07 +01:00
|
|
|
# Apply board specific content
|
2021-04-16 13:37:14 +02:00
|
|
|
include("${BOARD}/board.cmake")
|
2020-04-09 00:06:18 +07:00
|
|
|
|
2023-03-30 00:31:26 +07:00
|
|
|
idf_component_get_property(FREERTOS_ORIG_INCLUDE_PATH freertos ORIG_INCLUDE_PATH)
|
2020-04-09 00:06:18 +07:00
|
|
|
target_include_directories(${COMPONENT_TARGET} PUBLIC
|
|
|
|
"${FREERTOS_ORIG_INCLUDE_PATH}"
|
|
|
|
"${TOP}/hw"
|
2023-03-17 16:12:49 +07:00
|
|
|
"${TOP}/src"
|
2020-04-09 00:06:18 +07:00
|
|
|
)
|