mirror of
https://github.com/micropython/micropython.git
synced 2026-01-05 03:30:14 +01:00
stm32/adc: Add ADC auto-calibration for L4 MCUs.
This increases the precision of the ADC.
This commit is contained in:
committed by
Damien George
parent
7c85c7c210
commit
9acc32b40f
@@ -263,6 +263,9 @@ STATIC void adcx_init_periph(ADC_HandleTypeDef *adch, uint32_t resolution) {
|
||||
#if defined(STM32H7)
|
||||
HAL_ADCEx_Calibration_Start(adch, ADC_CALIB_OFFSET, ADC_SINGLE_ENDED);
|
||||
#endif
|
||||
#if defined(STM32L4)
|
||||
HAL_ADCEx_Calibration_Start(adch, ADC_SINGLE_ENDED);
|
||||
#endif
|
||||
}
|
||||
|
||||
STATIC void adc_init_single(pyb_obj_adc_t *adc_obj) {
|
||||
|
||||
Reference in New Issue
Block a user