2021-06-10 10:22:35 +08:00
|
|
|
idf_build_get_property(target IDF_TARGET)
|
2021-06-10 10:28:23 +08:00
|
|
|
if(NOT "${target}" STREQUAL "esp32h2")
|
2021-06-10 10:22:35 +08:00
|
|
|
return()
|
|
|
|
endif()
|
|
|
|
|
2021-07-06 17:29:05 +10:00
|
|
|
if(NOT BOOTLOADER_BUILD)
|
|
|
|
# [refactor-todo] propagate these requirements for compatibility
|
|
|
|
# remove in the future
|
|
|
|
set(legacy_reqs driver efuse soc)
|
|
|
|
endif()
|
2021-06-10 10:22:35 +08:00
|
|
|
|
2021-07-06 17:29:05 +10:00
|
|
|
idf_component_register(INCLUDE_DIRS include
|
|
|
|
REQUIRES riscv "${legacy_reqs}"
|
|
|
|
REQUIRED_IDF_TARGETS esp32h2)
|
2021-06-10 10:22:35 +08:00
|
|
|
|
2021-07-06 17:29:05 +10:00
|
|
|
target_linker_script(${COMPONENT_LIB} INTERFACE "ld/esp32h2.peripherals.ld")
|