2017-03-26 08:51 PM
Bug in Cube_F7_1.6 stm32f7xx_hal_rcc.c
HAL_RCC_GetOscConfig(); does not populate RCC_OscInitStruct.PLL.PLLR with a value under any circumstance.
It should have a value between 2 and 7 if defined (STM32F765xx) || defined (STM32F767xx) || defined (STM32F769xx) || defined (STM32F777xx) || defined (STM32F779xx)
2017-03-27 06:27 AM
RCC_PLLR_DIV_2 through _DIV_7 are not defined in stm32f7xx_hal_rcc.h, either.
2017-03-27 08:17 AM
Hi
doe.john.016
,Your feedback is reported for check. We will keep you posted about any update.
Thanks a lot for your contribution to the enhancement of our STM32 resources.
Khouloud.
2017-03-28 05:51 AM
these work if pllr is defined
((RCC->PLLCFGR) & RCC_PLLCFGR_PLLR) >> 28
((RCC->PLLCFGR) & 0x70000000) >> 28
2017-03-28 07:49 AM
Hi
doe.john.016
,Your feedback is forwarded to the appropriate team. This will be fixed in the coming version.
Thanks a lot for highlighting this .
Khouloud.
2017-09-26 06:37 AM
Hi John,
The issue is fixed in
.Again, many thanks for bringing this to our attention .
Khouloud.