@@ -428,7 +428,7 @@ void HAL_UART_ErrorCallback( UART_HandleTypeDef *handle )
428428
429429void USART1_IRQHandler ( void )
430430{
431- // [BEGIN] Workaround to solve an issue with the HAL drivers not managin the uart state correctly.
431+ // [BEGIN] Workaround to solve an issue with the HAL drivers not managing the uart state correctly.
432432 uint32_t tmpFlag = 0 , tmpItSource = 0 ;
433433
434434 tmpFlag = __HAL_UART_GET_FLAG ( & UartContext [UART_1 ].UartHandle , UART_FLAG_TC );
@@ -441,14 +441,14 @@ void USART1_IRQHandler( void )
441441 UartContext [UART_1 ].UartHandle .State = HAL_UART_STATE_BUSY_TX_RX ;
442442 }
443443 }
444- // [BEGIN ] Workaround to solve an issue with the HAL drivers not managin the uart state correctly.
444+ // [END ] Workaround to solve an issue with the HAL drivers not managing the uart state correctly.
445445
446446 HAL_UART_IRQHandler ( & UartContext [UART_1 ].UartHandle );
447447}
448448
449449void USART2_IRQHandler ( void )
450450{
451- // [BEGIN] Workaround to solve an issue with the HAL drivers not managin the uart state correctly.
451+ // [BEGIN] Workaround to solve an issue with the HAL drivers not managing the uart state correctly.
452452 uint32_t tmpFlag = 0 , tmpItSource = 0 ;
453453
454454 tmpFlag = __HAL_UART_GET_FLAG ( & UartContext [UART_2 ].UartHandle , UART_FLAG_TC );
@@ -461,7 +461,7 @@ void USART2_IRQHandler( void )
461461 UartContext [UART_2 ].UartHandle .State = HAL_UART_STATE_BUSY_TX_RX ;
462462 }
463463 }
464- // [END] Workaround to solve an issue with the HAL drivers not managin the uart state correctly.
464+ // [END] Workaround to solve an issue with the HAL drivers not managing the uart state correctly.
465465
466466 HAL_UART_IRQHandler ( & UartContext [UART_2 ].UartHandle );
467467}
0 commit comments