mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
4f93a707f8
1) Update WiFi and PHY libs for ESP32S2. 2) Remove KConfig options ESP32S2 PHY lib selection. 3) Change target macros from ESP32S2BETA to ESP32S2
101 lines
3.9 KiB
CMake
101 lines
3.9 KiB
CMake
idf_build_get_property(idf_target IDF_TARGET)
|
|
|
|
if(CONFIG_ESP32_NO_BLOBS OR CONFIG_ESP32S2_NO_BLOBS)
|
|
set(link_binary_libs 0)
|
|
set(ldfragments)
|
|
else()
|
|
set(link_binary_libs 1)
|
|
set(ldfragments "linker.lf")
|
|
endif()
|
|
|
|
if(IDF_TARGET_ESP32)
|
|
# dport workaround headers are in esp32 component
|
|
set(extra_priv_requires esp32)
|
|
else()
|
|
set(extra_priv_requires)
|
|
endif()
|
|
|
|
idf_component_register(SRCS "src/coexist.c"
|
|
"src/lib_printf.c"
|
|
"src/mesh_event.c"
|
|
"src/phy_init.c"
|
|
"src/smartconfig.c"
|
|
"src/smartconfig_ack.c"
|
|
"src/wifi_init.c"
|
|
"src/wifi_default.c"
|
|
"src/wifi_netif.c"
|
|
"${idf_target}/esp_adapter.c"
|
|
INCLUDE_DIRS "include" "${idf_target}/include"
|
|
REQUIRES esp_event
|
|
PRIV_REQUIRES wpa_supplicant nvs_flash esp_netif ${extra_priv_requires}
|
|
LDFRAGMENTS "${ldfragments}")
|
|
|
|
idf_build_get_property(build_dir BUILD_DIR)
|
|
|
|
# ToDo: Rename esp32s2beta to esp32s2 next time update wifi lib
|
|
set(target_name "${idf_target}")
|
|
if(idf_target STREQUAL "esp32s2")
|
|
set(target_name "esp32s2beta")
|
|
endif()
|
|
target_link_libraries(${COMPONENT_LIB} PUBLIC "-L ${CMAKE_CURRENT_SOURCE_DIR}/lib/${target_name}")
|
|
|
|
if(link_binary_libs)
|
|
set(phy phy)
|
|
set(blobs coexist core espnow mesh net80211 pp rtc smartconfig ${phy})
|
|
|
|
foreach(blob ${blobs})
|
|
add_library(${blob} STATIC IMPORTED)
|
|
set_property(TARGET ${blob} PROPERTY IMPORTED_LOCATION ${CMAKE_CURRENT_SOURCE_DIR}/lib/${target_name}/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(flash phy_init_data)
|
|
|
|
idf_component_get_property(main_args esptool_py FLASH_ARGS)
|
|
idf_component_get_property(sub_args esptool_py FLASH_SUB_ARGS)
|
|
|
|
# ToDo: remove once MP chip is supported
|
|
if(CONFIG_IDF_TARGET_ESP32)
|
|
set(phy_name "phy")
|
|
elseif(CONFIG_IDF_TARGET_ESP32S2)
|
|
if(CONFIG_ESP32S2_VERSION_A)
|
|
set(phy_name "phyA")
|
|
elseif(CONFIG_ESP32S2_VERSION_B)
|
|
set(phy_name "phyB")
|
|
elseif(CONFIG_ESP32S2_VERSION_MARLIN3)
|
|
set(phy_name "phy_marlin3")
|
|
endif()
|
|
endif()
|
|
|
|
esptool_py_flash_target(${phy_name}-flash "${main_args}" "${sub_args}")
|
|
esptool_py_flash_target_image(${phy_name}-flash ${phy_name} "${phy_partition_offset}" "${phy_init_data_bin}")
|
|
esptool_py_flash_target_image(flash ${phy_name} "${phy_partition_offset}" "${phy_init_data_bin}")
|
|
endif()
|