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

@ -113,12 +113,12 @@ detect a stalled task - a test that is no longer running. */
static volatile unsigned long ulLoopCounter = 0;
/* Handles to the test tasks. */
xTaskHandle xMediumPriorityTask, xHighPriorityTask, xHighestPriorityTask;
TaskHandle_t xMediumPriorityTask, xHighPriorityTask, xHighestPriorityTask;
/*-----------------------------------------------------------*/
void vStartQueuePeekTasks( void )
{
xQueueHandle xQueue;
QueueHandle_t xQueue;
/* Create the queue that we are going to use for the test/demo. */
xQueue = xQueueCreate( qpeekQUEUE_LENGTH, sizeof( unsigned long ) );
@ -143,7 +143,7 @@ xQueueHandle xQueue;
static void prvHighestPriorityPeekTask( void *pvParameters )
{
xQueueHandle xQueue = ( xQueueHandle ) pvParameters;
QueueHandle_t xQueue = ( QueueHandle_t ) pvParameters;
unsigned long ulValue;
#ifdef USE_STDIO
@ -252,7 +252,7 @@ unsigned long ulValue;
static void prvHighPriorityPeekTask( void *pvParameters )
{
xQueueHandle xQueue = ( xQueueHandle ) pvParameters;
QueueHandle_t xQueue = ( QueueHandle_t ) pvParameters;
unsigned long ulValue;
for( ;; )
@ -307,7 +307,7 @@ unsigned long ulValue;
static void prvMediumPriorityPeekTask( void *pvParameters )
{
xQueueHandle xQueue = ( xQueueHandle ) pvParameters;
QueueHandle_t xQueue = ( QueueHandle_t ) pvParameters;
unsigned long ulValue;
for( ;; )
@ -348,7 +348,7 @@ unsigned long ulValue;
static void prvLowPriorityPeekTask( void *pvParameters )
{
xQueueHandle xQueue = ( xQueueHandle ) pvParameters;
QueueHandle_t xQueue = ( QueueHandle_t ) pvParameters;
unsigned long ulValue;
for( ;; )