From 660200f05e31450534acf574e54004e02129ff8b Mon Sep 17 00:00:00 2001 From: Sudeep Mohanty Date: Fri, 16 Jan 2026 08:20:06 +0100 Subject: [PATCH] fix(lp_adc): Update ADC threshold values for LP core LP ADC test --- .../lp_core/lp_core_basic_tests/main/test_lp_core_adc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/ulp/test_apps/lp_core/lp_core_basic_tests/main/test_lp_core_adc.c b/components/ulp/test_apps/lp_core/lp_core_basic_tests/main/test_lp_core_adc.c index d026da4e45..23879bb0a5 100644 --- a/components/ulp/test_apps/lp_core/lp_core_basic_tests/main/test_lp_core_adc.c +++ b/components/ulp/test_apps/lp_core/lp_core_basic_tests/main/test_lp_core_adc.c @@ -22,8 +22,8 @@ extern const uint8_t lp_core_main_adc_bin_end[] asm("_binary_lp_core_test_app_ #if CONFIG_IDF_TARGET_ESP32P4 // Threshold values picked up empirically after manual testing -#define ADC_TEST_LOW_VAL 2160 -#define ADC_TEST_HIGH_VAL 4090 +#define ADC_TEST_LOW_VAL 1000 +#define ADC_TEST_HIGH_VAL 3200 #else #error "ADC threshold values not defined" #endif