Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions stm32cube/stm32h5xx/README
Original file line number Diff line number Diff line change
Expand Up @@ -74,4 +74,9 @@ Patch List:
Impacted file:
stm32cube/stm32h5xx/drivers/src/stm32h5xx_hal_sdio.c

*Fix warning about extraneous parentheses when compiling with clang
ST internal bug: 218364
Impacted files:
stm32cube/stm32h5xx/drivers/src/stm32h5xx_hal_rcc_ex.c

See release_note.html from STM32Cube
2 changes: 1 addition & 1 deletion stm32cube/stm32h5xx/drivers/src/stm32h5xx_hal_rcc_ex.c
Original file line number Diff line number Diff line change
Expand Up @@ -3510,7 +3510,7 @@ uint32_t HAL_RCCEx_GetPeriphCLKFreq(uint64_t PeriphClk)
frequency = pll2_clocks.PLL2_Q_Frequency;
}
#if defined(RCC_USART2CLKSOURCE_PLL3Q)
else if ((srcclk == RCC_USART2CLKSOURCE_PLL3Q))
else if (srcclk == RCC_USART2CLKSOURCE_PLL3Q)
{
HAL_RCCEx_GetPLL3ClockFreq(&pll3_clocks);
frequency = pll3_clocks.PLL3_Q_Frequency;
Expand Down