Update the demo directory to use the version 8 type naming conventions.

This commit is contained in:
Richard Barry 2014-02-11 12:04:59 +00:00
parent c6d8892b0d
commit 5a2a8fc319
639 changed files with 3127 additions and 3470 deletions

View file

@ -74,8 +74,8 @@ static void prvSerialISR( void );
typedef struct
{
portBASE_TYPE xInitialized;
xQueueHandle xRXChars;
xQueueHandle xTXChars;
QueueHandle_t xRXChars;
QueueHandle_t xTXChars;
} xComPortIF_t;
static xComPortIF_t xComPortIF[ COM_NIFACE ];
@ -145,7 +145,7 @@ xSerialPortInitMinimal( unsigned long ulWantedBaud,
signed portBASE_TYPE
xSerialGetChar( xComPortHandle pxPort, signed char * pcRxedChar,
portTickType xBlockTime )
TickType_t xBlockTime )
{
int i;
portBASE_TYPE xResult = pdFALSE;
@ -189,7 +189,7 @@ vSerialPutString( xComPortHandle pxPort, const signed char *
signed portBASE_TYPE
xSerialPutChar( xComPortHandle pxPort, signed char cOutChar,
portTickType xBlockTime )
TickType_t xBlockTime )
{
int i;
portBASE_TYPE xResult = pdFALSE;