git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/stable_20.3.x@14355 27425a3e-05d8-49a3-a47f-9c15f0e5edd8
This commit is contained in:
Giovanni Di Sirio 2021-05-08 08:27:51 +00:00
parent e5a4f010f6
commit 3c22b1beb4
2 changed files with 2 additions and 1 deletions

View File

@ -551,7 +551,7 @@ void adc_lld_stop(ADCDriver *adcp) {
* @notapi
*/
void adc_lld_start_conversion(ADCDriver *adcp) {
uint32_t dmamode, cfgr;
uint32_t dmamode, cfgr = 0U;
const ADCConversionGroup *grpp = adcp->grpp;
#if STM32_ADC_USE_ADC12 == TRUE

View File

@ -76,6 +76,7 @@
*** 20.3.4 ***
- NEW: Files mcuconf.h for STM32F746, F767, L432, L452, L476, L496 received
the missing setting STM32_WSPI_QUADSPI1_PRESCALER_VALUE.
- FIX: Fixed warning in STM32 ADCv4 (bug #1158).
- FIX: Fixed wrong check on HAL_USE_RTC in STM32G4 clock initialization
(bug #1157).
- FIX: Fixed wrong checks related to PLLSAI2 on L4 and L4+ (bug #1156).