stm32/boards: Change default LSI_VALUE to 32000 for F4 MCUs.

In the STM32 HAL libraries, the default value for LSI_VALUE for F4 MCUs is
32 kHz.

Signed-off-by: David Lechner <david@pybricks.com>
This commit is contained in:
David Lechner 2021-04-30 14:41:20 -05:00 committed by Damien George
parent d70ab87b2b
commit ca0c75f504
1 changed files with 1 additions and 1 deletions

View File

@ -88,7 +88,7 @@
// Oscillator values in Hz
#define HSI_VALUE (16000000)
#define LSI_VALUE (40000)
#define LSI_VALUE (32000)
// SysTick has the highest priority
#define TICK_INT_PRIORITY (0x00)