2021-10-27 01:28 AM
/** Initializes the CPU, AHB and APB buses clocks
*/
//RCC_ClkInitStruct.ClockType = ClockTypeHCLK|ClockTypeSysClk
// |ClockTypePCLK1|ClockTypePCLK2;
//Has to be:
RCC_ClkInitStruct.ClockType = RCC_CLOCKTYPE_SYSCLK| RCC_CLOCKTYPE_HCLK | RCC_CLOCKTYPE_PCLK1 | RCC_CLOCKTYPE_PCLK2;
2021-10-27 06:58 AM
It looks like a bug.
Perhaps include steps to reproduce so that someone can look at it if they wanted.
2021-11-01 09:42 AM
Hello @Brieuc ,
Can you please describe precisely the steps and what configuration you made ?
If possible please share the ioc file, this will help to reproduce exactly the same scenario.
Imen