mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-11-05 11:12:27 -05:00
Minor formatting and name changes only.
This commit is contained in:
parent
a93c8d6659
commit
b492b7eb89
2 changed files with 58 additions and 50 deletions
|
|
@ -68,7 +68,7 @@
|
|||
#include "serial.h"
|
||||
/*-----------------------------------------------------------*/
|
||||
|
||||
#define COM_BLOCK_RETRYTIME 10
|
||||
#define comBLOCK_RETRY_TIME 10
|
||||
/*-----------------------------------------------------------*/
|
||||
|
||||
void vUARTInterruptHandlerTxWrapper(void) __attribute((naked));
|
||||
|
|
@ -132,7 +132,7 @@ void vSerialPutString( xComPortHandle pxPort, const signed char * const pcString
|
|||
for( i = 0; i < usStringLength; i++ )
|
||||
{
|
||||
/* Block until character has been transmitted. */
|
||||
while( xSerialPutChar( pxPort, *pChNext, COM_BLOCK_RETRYTIME ) != pdTRUE ); pChNext++;
|
||||
while( xSerialPutChar( pxPort, *pChNext, comBLOCK_RETRY_TIME ) != pdTRUE ); pChNext++;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue