mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-04-20 05:21:59 -04:00
Add variable initialisation. Doesn't really make a difference, just neater.
This commit is contained in:
parent
9cea94ccce
commit
09bfc2d862
|
@ -201,7 +201,7 @@ signed portBASE_TYPE xReturn;
|
||||||
__interrupt void UART2_TxISR (void)
|
__interrupt void UART2_TxISR (void)
|
||||||
{
|
{
|
||||||
signed portCHAR cChar;
|
signed portCHAR cChar;
|
||||||
signed portBASE_TYPE xTaskWoken;
|
signed portBASE_TYPE xTaskWoken = pdFALSE;
|
||||||
|
|
||||||
/* The previous character has been transmitted. See if there are any
|
/* The previous character has been transmitted. See if there are any
|
||||||
further characters waiting transmission. */
|
further characters waiting transmission. */
|
||||||
|
|
Loading…
Reference in a new issue