From c4cc3bb895ad4208a1d229b09c23b1332fdee231 Mon Sep 17 00:00:00 2001 From: Armando Date: Fri, 23 Jul 2021 10:23:41 +0800 Subject: [PATCH] adc: temporarily disable adc2 wifi test pending on s3 adc calibration --- components/driver/test/test_adc2_with_wifi.c | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/components/driver/test/test_adc2_with_wifi.c b/components/driver/test/test_adc2_with_wifi.c index 1346ebacad..53649ddb2e 100644 --- a/components/driver/test/test_adc2_with_wifi.c +++ b/components/driver/test/test_adc2_with_wifi.c @@ -22,7 +22,7 @@ #include "driver/gpio.h" -#if !TEMPORARY_DISABLED_FOR_TARGETS(ESP32S3) +#if !TEMPORARY_DISABLED_FOR_TARGETS(ESP32C3, ESP32S3) static const char* TAG = "test_adc2"; @@ -44,6 +44,11 @@ static const char* TAG = "test_adc2"; #define ADC_WIDTH ADC_WIDTH_BIT_12 #define ADC_HIGH 4095 #define ADC_ERROR_THRES 100 +#elif CONFIG_IDF_TARGET_ESP32S3 +#define ADC2_CHAN1 ADC2_CHANNEL_0 +#define ADC_WIDTH ADC_WIDTH_BIT_12 +#define ADC_HIGH 4095 +#define ADC_ERROR_THRES 100 #endif #define ADC_LOW 0 @@ -206,7 +211,7 @@ TEST_CASE("adc2 work with wifi","[adc]") TEST_IGNORE_MESSAGE("this test case is ignored due to the critical memory leak of esp_netif and event_loop."); } -#endif //#if !TEMPORARY_DISABLED_FOR_TARGETS(ESP32S3) +#endif //#if !TEMPORARY_DISABLED_FOR_TARGETS(ESP32C3, ESP32S3) #ifdef CONFIG_IDF_TARGET_ESP32