mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-08-29 22:48:37 -04:00
Fix buffer clean up in \FreeRTOS_Plus_TCP_Minimal_Windows_Simulator\demo_logging.c.
Update queue code to allow an overwrite operation on a queue that is in a queue set, and add prvTestQueueOverwriteWithQueueSet() to test function. Update Eclipse Win32 project to bring it closer the the Visual Studio equivalent.
This commit is contained in:
parent
ff74e7aa63
commit
9ed3a9fe18
11 changed files with 325 additions and 112 deletions
|
@ -172,7 +172,7 @@ BaseType_t xNextByte = 0;
|
|||
continuing to look for the end of the string. */
|
||||
xNextByte++;
|
||||
|
||||
configASSERT( xNextByte < sizeof( cRxBuffer ) );
|
||||
configASSERT( ( size_t ) xNextByte < sizeof( cRxBuffer ) );
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -193,7 +193,7 @@ static BaseType_t xCallCount = 0;
|
|||
|
||||
/* Send the next four bytes to the stream buffer. */
|
||||
xStreamBufferSendFromISR( xStreamBuffer,
|
||||
( void * ) ( pcStringToSend + xNextByteToSend ),
|
||||
( const void * ) ( pcStringToSend + xNextByteToSend ),
|
||||
xBytesToSend,
|
||||
NULL );
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue