mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-08-25 20:48:32 -04:00
Add the option to specify a stack size in the standard demo MessageBuffer tests.
Add stream and message buffer tests into the Zynq demo project.
This commit is contained in:
parent
4fbcdbf13b
commit
d6fcd5dbba
14 changed files with 134 additions and 54 deletions
|
@ -652,7 +652,7 @@ BaseType_t xNonBlockingReceiveError = pdFALSE;
|
|||
|
||||
static void prvReceiverTask( void *pvParameters )
|
||||
{
|
||||
StreamBufferHandle_t * const pxStreamBuffer = ( StreamBufferHandle_t * ) pvParameters;
|
||||
StreamBufferHandle_t const pxStreamBuffer = ( StreamBufferHandle_t ) pvParameters;
|
||||
char cRxString[ 12 ]; /* Large enough to hold a 32-bit number in ASCII. */
|
||||
const TickType_t xTicksToWait = pdMS_TO_TICKS( 5UL );
|
||||
const size_t xStringLength = strlen( pc55ByteString );
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue