mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
10 lines
266 B
CMake
10 lines
266 B
CMake
idf_build_get_property(target IDF_TARGET)
|
|
# ToDo: re-enable adc-cal for other target
|
|
if(NOT ${target} STREQUAL "esp32")
|
|
return()
|
|
endif()
|
|
|
|
idf_component_register(SRCS "esp_adc_cal.c"
|
|
INCLUDE_DIRS "include"
|
|
REQUIRES driver)
|