Searched refs:cRxString (Results 1 – 3 of 3) sorted by relevance
/FreeRTOS-Plus/Demo/FreeRTOS_Plus_TCP_IPv6_Demo/IPv6_Multi_WinSim_demo/ |
A D | UDPEchoClient_SingleTasks.c | 118 …int8_t cTxString[ TX_RX_STR_SIZE ], cRxString[ TX_RX_STR_SIZE ]; /* Make sure the stack is large e… in prvUDPEchoClientTask() local 238 memset( ( void * ) cRxString, 0x00, sizeof( cRxString ) ); in prvUDPEchoClientTask() 252 memcpy( ( void * ) ( cRxString ), pucReceivedUDPPayload, TX_RX_STR_SIZE ); in prvUDPEchoClientTask() 258 … cRxString, /* The buffer into which the received data will be written. */ in prvUDPEchoClientTask() 259 … sizeof( cRxString ), /* The size of the buffer provided to receive the data. */ in prvUDPEchoClientTask() 268 if( strcmp( ( char * ) cRxString, ( char * ) cTxString ) == 0 ) in prvUDPEchoClientTask()
|
/FreeRTOS-Plus/Demo/Common/FreeRTOS_Plus_UDP_Demos/EchoClients/ |
A D | TwoEchoClients.c | 123 …char cTxString[ 25 ], cRxString[ 25 ]; /* Make sure the stack is large enough to hold these. Turn… in prvEchoClientTask() local 195 memset( ( void * ) cRxString, 0x00, sizeof( cRxString ) ); in prvEchoClientTask() 197 … cRxString, /* The buffer into which the received data will be written. */ in prvEchoClientTask() 198 … sizeof( cRxString ), /* The size of the buffer provided to receive the data. */ in prvEchoClientTask() 204 if( strcmp( cRxString, cTxString ) == 0 ) in prvEchoClientTask()
|
/FreeRTOS-Plus/Demo/FreeRTOS_Plus_TCP_UDP_Mode_CLI_Windows_Simulator/DemoTasks/ |
A D | TwoEchoClients.c | 131 …int8_t cTxString[ 25 ], cRxString[ 25 ]; /* Make sure the stack is large enough to hold these. Tu… in prvEchoClientTask() local 215 memset( ( void * ) cRxString, 0x00, sizeof( cRxString ) ); in prvEchoClientTask() 217 … cRxString, /* The buffer into which the received data will be written. */ in prvEchoClientTask() 218 … sizeof( cRxString ), /* The size of the buffer provided to receive the data. */ in prvEchoClientTask() 226 if( strcmp( ( char * ) cRxString, ( char * ) cTxString ) == 0 ) in prvEchoClientTask()
|
Completed in 16 milliseconds