This website works better with JavaScript.
Home
Explore
Help
Sign In
jmg
/
stm32lib
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
F4_HAL/uart: Fix UART10 in LL_USART_Init.
work-f1-1.10.2
David Lechner
4 years ago
committed by
Damien George
parent
288b97d4c0
commit
372e9b8f64
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usart.c
+ 1
- 1
STM32F4xx_HAL_Driver/Src/stm32f4xx_ll_usart.c
View File
@@ -361,7 +361,7 @@ ErrorStatus LL_USART_Init(USART_TypeDef *USARTx, LL_USART_InitTypeDef *USART_Ini
}
#endif /* UART9 */
#if defined(UART10)
else if (USARTx == UART
5
)
else if (USARTx == UART
10
)
{
periphclk = rcc_clocks.PCLK1_Frequency;
}
Write
Preview
Loading…
Cancel
Save