mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
5cc329b9d0
notice that the o_code is now pulled from efuse instead of automatically calibrated. This may influence other parts of the system. Closes https://github.com/espressif/esp-idf/issues/5455
17 lines
472 B
CMake
17 lines
472 B
CMake
idf_build_get_property(target IDF_TARGET)
|
|
|
|
set(requires soc)
|
|
if(${target} STREQUAL "esp32")
|
|
list(APPEND requires efuse)
|
|
endif()
|
|
|
|
idf_component_register(SRCS "compare_set.c"
|
|
"cpu_util.c"
|
|
INCLUDE_DIRS include
|
|
REQUIRES ${requires}
|
|
PRIV_REQUIRES efuse
|
|
LDFRAGMENTS linker.lf)
|
|
|
|
idf_build_get_property(target IDF_TARGET)
|
|
add_subdirectory(port/${target})
|