adc: esp32 add missing header

Without this header the logic in adc_esp32.c will never have either
ADC_CALI_SCHEME_CURVE_FITTING_SUPPORTED or
ADC_CALI_SCHEME_LINE_FITTING_SUPPORTED defined. This means
that we always see the warnings aout uncalibrated samples.

Signed-off-by: Yuval Peress <yuval.peress@gmail.com>
This commit is contained in:
Yuval Peress
2025-10-31 14:26:27 -06:00
committed by Chris Friedt
parent b6c5d91507
commit bf0e0b3cad

View File

@@ -8,6 +8,7 @@
#include <hal/adc_oneshot_hal.h>
#include <hal/adc_types.h>
#include <esp_adc/adc_cali.h>
#include <esp_adc/adc_cali_scheme.h>
#include <zephyr/kernel.h>
#include <zephyr/drivers/adc.h>