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
360d357e15
commit
dc307b270b
|
@ -234,7 +234,7 @@ signed portBASE_TYPE xReturn;
|
||||||
void vTxISR( void ) __interrupt[ UART1TX_VECTOR ]
|
void vTxISR( void ) __interrupt[ UART1TX_VECTOR ]
|
||||||
{
|
{
|
||||||
signed portCHAR cChar;
|
signed portCHAR cChar;
|
||||||
portBASE_TYPE xTaskWoken;
|
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. */
|
||||||
|
@ -282,7 +282,7 @@ signed portBASE_TYPE xReturn;
|
||||||
void ISRCom1Tx( void )
|
void ISRCom1Tx( void )
|
||||||
{
|
{
|
||||||
signed portCHAR cChar;
|
signed portCHAR cChar;
|
||||||
portBASE_TYPE xTaskWoken;
|
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