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:
parent
d70ab87b2b
commit
ca0c75f504
|
@ -88,7 +88,7 @@
|
||||||
|
|
||||||
// Oscillator values in Hz
|
// Oscillator values in Hz
|
||||||
#define HSI_VALUE (16000000)
|
#define HSI_VALUE (16000000)
|
||||||
#define LSI_VALUE (40000)
|
#define LSI_VALUE (32000)
|
||||||
|
|
||||||
// SysTick has the highest priority
|
// SysTick has the highest priority
|
||||||
#define TICK_INT_PRIORITY (0x00)
|
#define TICK_INT_PRIORITY (0x00)
|
||||||
|
|
Loading…
Reference in New Issue