We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5d32e51 commit fd40374Copy full SHA for fd40374
cores/arduino/stm32/analog.cpp
@@ -822,7 +822,7 @@ uint16_t adc_read_value(PinName pin)
822
AdcHandle.Init.NbrOfDiscConversion = 0; /* Parameter discarded because sequencer is disabled */
823
#endif
824
AdcHandle.Init.ExternalTrigConv = ADC_SOFTWARE_START; /* Software start to trig the 1st conversion manually, without external event */
825
-#if !defined(STM32F1xx)
+#if !defined(STM32F1xx) && !defined(STM32F373xC) && !defined(STM32F378xx)
826
AdcHandle.Init.ExternalTrigConvEdge = ADC_EXTERNALTRIGCONVEDGE_NONE; /* Parameter discarded because software trigger chosen */
827
828
#if !defined(STM32F1xx) && !defined(STM32H7xx) && \
0 commit comments