Minor formatting and name changes only.

This commit is contained in:
Richard Barry 2010-03-26 10:03:32 +00:00
parent a93c8d6659
commit b492b7eb89
2 changed files with 58 additions and 50 deletions

View file

@ -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++;
}
}