mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-04-19 21:11:57 -04:00
Add variable initialisation. Doesn't really make a difference, just neater.
This commit is contained in:
parent
c1d5690da6
commit
9cea94ccce
|
@ -199,7 +199,7 @@ portBASE_TYPE xHigherPriorityTaskWoken = pdFALSE;
|
|||
|
||||
__interrupt void SIG_UART_DATA( void )
|
||||
{
|
||||
signed portCHAR cChar, cTaskWoken;
|
||||
signed portCHAR cChar, cTaskWoken = pdFALSE;
|
||||
|
||||
if( xQueueReceiveFromISR( xCharsForTx, &cChar, &cTaskWoken ) == pdTRUE )
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue