forked from epagris/FreeRTOS-Kernel
Add variable initialisation. Doesn't really make a difference, just neater.
This commit is contained in:
parent
c95cae5a99
commit
98daf5a1b8
@ -230,7 +230,7 @@ portBASE_TYPE xHigherPriorityTaskWoken = pdFALSE;
|
||||
#pragma interruptlow vSerialTxISR save=PRODH, PRODL, TABLAT, section(".tmpdata")
|
||||
void vSerialTxISR( void )
|
||||
{
|
||||
portCHAR cChar, cTaskWoken;
|
||||
portCHAR cChar, cTaskWoken = pdFALSE;
|
||||
|
||||
if( xQueueReceiveFromISR( xCharsForTx, &cChar, &cTaskWoken ) == pdTRUE )
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user