Question
BUG: CubeMX STM32F767IG RCC Assert Failed
CubeMX 5.5.0
STM32Cube_FW_F7_V1.15.0
STM32F767IG
Assert Failed: FILE - ../Drivers/STM32F7xx_HAL_Driver/Src/stm32f7xx_hal_rcc.c, LINE - 602
RCC_OscInitStruct.PLL.PLLR is not assigned a value, therefore = 0, which fails above assert
Adding following code resolves issue
/* CUBEMX BUG FIX
* PLLR not initialized to a valid value
* PLLR >=2 && <= 7
* Initialize to 2 (reset value)
*/
RCC_OscInitStruct.PLL.PLLR = 2;Andy