mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
8424822150
Add CONFIG_DIR as a build property, so that components don't have to derive it from one of the generated config files.
62 lines
2.4 KiB
CMake
62 lines
2.4 KiB
CMake
idf_build_get_property(idf_target IDF_TARGET)
|
|
idf_build_get_property(build_dir BUILD_DIR)
|
|
|
|
set(COMPONENT_SRCS
|
|
"src/coexist.c"
|
|
"src/fast_crypto_ops.c"
|
|
"src/lib_printf.c"
|
|
"src/mesh_event.c"
|
|
"src/phy_init.c"
|
|
"src/restore.c"
|
|
"src/wifi_init.c")
|
|
set(COMPONENT_ADD_INCLUDEDIRS "include" "${idf_target}/include")
|
|
set(COMPONENT_PRIV_INCLUDEDIRS)
|
|
set(COMPONENT_PRIV_REQUIRES wpa_supplicant nvs_flash)
|
|
|
|
if(NOT CONFIG_ESP32_NO_BLOBS)
|
|
set(COMPONENT_ADD_LDFRAGMENTS "linker.lf")
|
|
endif()
|
|
|
|
register_component()
|
|
target_link_libraries(${COMPONENT_LIB} PUBLIC "-L ${CMAKE_CURRENT_SOURCE_DIR}/lib_${idf_target}")
|
|
|
|
if(NOT CONFIG_ESP32_NO_BLOBS)
|
|
set(blobs coexist core espnow mesh net80211 phy pp rtc smartconfig wpa2 wpa wps)
|
|
foreach(blob ${blobs})
|
|
add_library(${blob} STATIC IMPORTED)
|
|
set_property(TARGET ${blob} PROPERTY IMPORTED_LOCATION ${CMAKE_CURRENT_SOURCE_DIR}/lib_${idf_target}/lib${blob}.a)
|
|
target_link_libraries(${COMPONENT_LIB} PUBLIC ${blob})
|
|
|
|
foreach(_blob ${blobs})
|
|
if(NOT _blob STREQUAL ${blob})
|
|
set_property(TARGET ${blob} APPEND PROPERTY INTERFACE_LINK_LIBRARIES ${_blob})
|
|
endif()
|
|
endforeach()
|
|
|
|
set_property(TARGET ${blob} APPEND PROPERTY INTERFACE_LINK_LIBRARIES ${COMPONENT_LIB})
|
|
endforeach()
|
|
endif()
|
|
|
|
if(CONFIG_ESP32_PHY_INIT_DATA_IN_PARTITION)
|
|
idf_component_get_property(esp_common_dir esp_common COMPONENT_DIR)
|
|
partition_table_get_partition_info(phy_partition_offset "--partition-type data --partition-subtype phy" "offset")
|
|
set(phy_init_data_bin "${build_dir}/phy_init_data.bin")
|
|
|
|
# To get the phy_init_data.bin file, compile phy_init_data.h as a C file and then objcopy
|
|
# the object file to a raw binary
|
|
idf_build_get_property(config_dir CONFIG_DIR)
|
|
add_custom_command(
|
|
OUTPUT ${phy_init_data_bin}
|
|
DEPENDS ${CMAKE_CURRENT_LIST_DIR}/${idf_target}/include/phy_init_data.h
|
|
COMMAND ${CMAKE_C_COMPILER} -x c -c
|
|
-I ${esp_common_dir}/include -I ${CMAKE_CURRENT_LIST_DIR}/include -I ${config_dir}
|
|
-o phy_init_data.obj
|
|
${CMAKE_CURRENT_LIST_DIR}/${idf_target}/include/phy_init_data.h
|
|
COMMAND ${CMAKE_OBJCOPY} -O binary phy_init_data.obj ${phy_init_data_bin}
|
|
)
|
|
add_custom_target(phy_init_data ALL DEPENDS ${phy_init_data_bin})
|
|
add_dependencies(app phy_init_data)
|
|
|
|
esptool_py_flash_project_args(phy ${phy_partition_offset} ${phy_init_data_bin} FLASH_IN_PROJECT)
|
|
endif()
|