2019-12-26 07:25:24 +00:00
|
|
|
idf_build_get_property(target IDF_TARGET)
|
2018-01-19 05:22:08 +00:00
|
|
|
|
2020-07-09 12:55:52 +00:00
|
|
|
if(${target} STREQUAL "esp32")
|
|
|
|
idf_component_register(SRCS "esp_adc_cal_esp32.c"
|
|
|
|
INCLUDE_DIRS "include"
|
|
|
|
REQUIRES driver efuse)
|
|
|
|
|
|
|
|
elseif(${target} STREQUAL "esp32s2")
|
2020-11-10 06:51:08 +00:00
|
|
|
idf_component_register(SRCS "esp_adc_cal_esp32s2.c"
|
2019-04-28 07:38:23 +00:00
|
|
|
INCLUDE_DIRS "include"
|
2020-07-09 12:55:52 +00:00
|
|
|
REQUIRES driver efuse)
|
|
|
|
|
2020-12-23 04:29:57 +00:00
|
|
|
elseif(${target} STREQUAL "esp32c3")
|
|
|
|
idf_component_register(SRCS "esp_adc_cal_esp32c3.c"
|
|
|
|
INCLUDE_DIRS "include"
|
|
|
|
REQUIRES driver efuse)
|
2020-07-09 12:55:52 +00:00
|
|
|
endif()
|