Question
[SOLVED] STM32F3-Discovery: HSE never switches to ready, no 72 MHz
Posted on February 21, 2015 at 04:20
#stm32f3-discovery #stm32f3 #hse
I'm trying to get a STM32F3-Discovery to run on 72 MHz. I have a test project set up
https://github.com/sunsided/stm32f3-disco/tree/hse-problem
. The project is nothing fancy, basically a default project generated from GNU ARM Toolchain for Eclipse.However, in theSetSysClock()
code (), the loop that waits for the HSE to become ready always times out, so I'm stuck with the 8 MHz internal oscillator.I triedRCC_HSEConfig(RCC_HSE_ON)
as well asRCC_HSEConfig(RCC_HSE_Bypass)
(which I assume is what I need), to no avail. This is on a plain F3-Discovery, i.e. only the 8 MHz osc from the ST-Link, no osc on X2.Am I doing anything wrong?
#stm32f3-discovery #stm32f3 #hse