mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
6fce2930d0
Involved components: * app_trace * esp-tls * esp_adc_cal * esp_pm * esp_serial_slave_link * esp_timer * freertos * idf_test * log * mbedtls * newlib * perfmon * spi_flash * spiffs * ulp * unity * vfs
23 lines
762 B
CMake
23 lines
762 B
CMake
idf_build_get_property(target IDF_TARGET)
|
|
|
|
if(${target} STREQUAL "esp32")
|
|
idf_component_register(SRCS "esp_adc_cal_esp32.c"
|
|
INCLUDE_DIRS "include"
|
|
REQUIRES driver efuse)
|
|
|
|
elseif(${target} STREQUAL "esp32s2")
|
|
idf_component_register(SRCS "esp_adc_cal_esp32s2.c"
|
|
INCLUDE_DIRS "include"
|
|
REQUIRES driver efuse)
|
|
|
|
elseif(${target} STREQUAL "esp32c3")
|
|
idf_component_register(SRCS "esp_adc_cal_esp32c3.c"
|
|
INCLUDE_DIRS "include"
|
|
REQUIRES driver efuse)
|
|
|
|
elseif(${target} STREQUAL "esp32h2")
|
|
idf_component_register(SRCS "esp_adc_cal_esp32h2.c"
|
|
INCLUDE_DIRS "include"
|
|
REQUIRES driver efuse)
|
|
endif()
|