mirror of
https://github.com/espressif/esp-idf.git
synced 2026-04-28 19:34:59 +00:00
17 lines
337 B
CMake
17 lines
337 B
CMake
set(EFUSE_SOC_SRCS
|
|
"esp_efuse_utility.c"
|
|
"esp_efuse_fields.c"
|
|
)
|
|
|
|
if(CONFIG_ESP32P4_REV_MIN_FULL GREATER_EQUAL 300)
|
|
list(APPEND EFUSE_SOC_SRCS
|
|
"esp_efuse_table_v3.0.c"
|
|
"esp_efuse_rtc_calib.c"
|
|
)
|
|
else()
|
|
list(APPEND EFUSE_SOC_SRCS
|
|
"esp_efuse_table.c"
|
|
"esp_efuse_rtc_calib.c"
|
|
)
|
|
endif()
|