Hello world project clock issue
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2021-12-22 7:23 AM
I have an STM32F415VG custom board with a 25MHz external oscillator.
I created an empty project with CubeMX setting the clock to use HSE+PLL to have 72MHz SYSCLK. Nothing else is enabled except the Serial Wire Debug port.
I import the project in KEIL, build and load it.
When I run it, the SystemClock_Config function crashes, loosing debuger connection.
I debugged the funcion and found out that the issue arises right after the instruction
/* Enable the main PLL. */
__HAL_RCC_PLL_ENABLE();
inside the HAL_RCC_OscConfig(&RCC_OscInitStruct) function.
What could be the issue? I neve experienced this.
N.B. We have previously used this board for another project and never had an issue like that, the clock config just worked.
- Labels:
-
RCC
-
STM32CubeMX
-
STM32F4 Series
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2021-12-22 7:36 AM
Looks like a clock configuration issue.
Is HSE_VALUE set to 25000000?
Are wait states sufficient?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2021-12-22 7:38 AM
Yes HSE is set to proper value. About wait states i'm using default value provided by CubeMX.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2021-12-22 7:48 AM
This happened to me once when i forgot to put in place the external XTAL, and also remmember another time i placed the wrong capacitor value (100nF instead of 22pF)
Did you discarded damaged board?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2021-12-23 2:11 AM
The board was just working as is with another software project.
