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
On the STM32F1 series, the HSE clock can be generated either from external crystal or an external clock. If an external clock source is used, the HSEBYP bit must be set in the RCC_CR clock control register (see chapter 7.2.1 in STM32F1 reference manual). This is a common setup on ST's Nucleo dev boards, where the external clock is provided by the integrated ST-LINK debugger probe.
Currently, the stm32f1xx-hal does not allow to set the HSEBYP bit. This limits the clock setup to only use the HSI clock. Other STM32 HALs implement setting this bit.
The text was updated successfully, but these errors were encountered:
On the STM32F1 series, the HSE clock can be generated either from external crystal or an external clock. If an external clock source is used, the HSEBYP bit must be set in the RCC_CR clock control register (see chapter 7.2.1 in STM32F1 reference manual). This is a common setup on ST's Nucleo dev boards, where the external clock is provided by the integrated ST-LINK debugger probe.
Currently, the stm32f1xx-hal does not allow to set the HSEBYP bit. This limits the clock setup to only use the HSI clock. Other STM32 HALs implement setting this bit.
The text was updated successfully, but these errors were encountered: