git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@15825 27425a3e-05d8-49a3-a47f-9c15f0e5edd8
This commit is contained in:
Giovanni Di Sirio 2022-10-22 07:52:45 +00:00
parent 918a7b203e
commit 589cbb2020
2 changed files with 3 additions and 1 deletions

View File

@ -61,7 +61,7 @@ NOINLINE static void adc_lld_vreg_on(ADC_TypeDef *adc) {
#if defined(ADC_CR_ADVREGEN) #if defined(ADC_CR_ADVREGEN)
adc->CR = ADC_CR_ADVREGEN; adc->CR = ADC_CR_ADVREGEN;
volatile uint32_t loop = (STM32_HCLK >> 20) << 4; volatile uint32_t loop = STM32_HCLK >> 16;
do { do {
loop--; loop--;
} while (loop > 0); } while (loop > 0);

View File

@ -129,6 +129,8 @@
- NEW: Increased stacks size in RT test suite from 128 to 192. added an - NEW: Increased stacks size in RT test suite from 128 to 192. added an
option to override the stack size by defining THREADS_STACK_SIZE option to override the stack size by defining THREADS_STACK_SIZE
in the makefile. in the makefile.
- FIX: Fixed invalid delay loop in STM32G0/WL ADCv5 driver (bug #1240)
(backported to 20.3.5)(***********TODO*********** backported to 21.11.3).
- FIX: Fixed STM32_MCOSEL setting problem (bug #1239)(***********TODO*********** backported to 21.11.3). - FIX: Fixed STM32_MCOSEL setting problem (bug #1239)(***********TODO*********** backported to 21.11.3).
- FIX: Fixed problems with cache in STM32 SDMMC drivers (bug #1238)(***********TODO*********** backported to 21.11.3). - FIX: Fixed problems with cache in STM32 SDMMC drivers (bug #1238)(***********TODO*********** backported to 21.11.3).
- FIX: Fixed missing clock enables for some GPIOS on some STM32L4s (bug #1237) - FIX: Fixed missing clock enables for some GPIOS on some STM32L4s (bug #1237)