You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
system_stm32f1xx.c initially sets SystemCoreClock to a value of 16000000, while on startup the STM32F1 series defaults to using the 8 MHz HSI clock. This leads to incorrect operation of peripherals whose configuration depends on SystemCoreClock. Calling SystemCoreClockUpdate() during program initialization corrects the value stored in SystemCoreClock.
The text was updated successfully, but these errors were encountered:
system_stm32f1xx.c initially sets SystemCoreClock to a value of 16000000, while on startup the STM32F1 series defaults to using the 8 MHz HSI clock. This leads to incorrect operation of peripherals whose configuration depends on SystemCoreClock. Calling SystemCoreClockUpdate() during program initialization corrects the value stored in SystemCoreClock.
The text was updated successfully, but these errors were encountered: