]> git.sur5r.net Git - freertos/blobdiff - FreeRTOS/Demo/Common/Minimal/AltQTest.c
Ensure demo app files are using FreeRTOS V8 names - a few were missed previously.
[freertos] / FreeRTOS / Demo / Common / Minimal / AltQTest.c
index 6b3397f525967758d7f296a7dd81295b366324ad..e8c4ce8a0acf21cfbfbfd07d6b8394f53571bae6 100644 (file)
@@ -123,15 +123,15 @@ static void prvHighPriorityMutexTask( void *pvParameters );
 \r
 /* Flag that will be latched to pdTRUE should any unexpected behaviour be\r
 detected in any of the tasks. */\r
-static portBASE_TYPE xErrorDetected = pdFALSE;\r
+static BaseType_t xErrorDetected = pdFALSE;\r
 \r
 /* Counters that are incremented on each cycle of a test.  This is used to\r
 detect a stalled task - a test that is no longer running. */\r
-static volatile unsigned long ulLoopCounter = 0;\r
-static volatile unsigned long ulLoopCounter2 = 0;\r
+static volatile uint32_t ulLoopCounter = 0;\r
+static volatile uint32_t ulLoopCounter2 = 0;\r
 \r
 /* The variable that is guarded by the mutex in the mutex demo tasks. */\r
-static volatile unsigned long ulGuardedVariable = 0;\r
+static volatile uint32_t ulGuardedVariable = 0;\r
 \r
 /* Handles used in the mutext test to suspend and resume the high and medium\r
 priority mutex test tasks. */\r
@@ -139,14 +139,14 @@ static TaskHandle_t xHighPriorityMutexTask, xMediumPriorityMutexTask;
 \r
 /*-----------------------------------------------------------*/\r
 \r
-void vStartAltGenericQueueTasks( unsigned portBASE_TYPE uxPriority )\r
+void vStartAltGenericQueueTasks( UBaseType_t uxPriority )\r
 {\r
 QueueHandle_t xQueue;\r
 SemaphoreHandle_t xMutex;\r
 \r
        /* Create the queue that we are going to use for the\r
        prvSendFrontAndBackTest demo. */\r
-       xQueue = xQueueCreate( genqQUEUE_LENGTH, sizeof( unsigned long ) );\r
+       xQueue = xQueueCreate( genqQUEUE_LENGTH, sizeof( uint32_t ) );\r
 \r
        /* vQueueAddToRegistry() adds the queue to the queue registry, if one is\r
        in use.  The queue registry is provided as a means for kernel aware \r
@@ -183,7 +183,7 @@ SemaphoreHandle_t xMutex;
 \r
 static void prvSendFrontAndBackTest( void *pvParameters )\r
 {\r
-unsigned long ulData, ulData2;\r
+uint32_t ulData, ulData2;\r
 QueueHandle_t xQueue;\r
 \r
        #ifdef USE_STDIO\r
@@ -559,9 +559,9 @@ SemaphoreHandle_t xMutex = ( SemaphoreHandle_t ) pvParameters;
 /*-----------------------------------------------------------*/\r
 \r
 /* This is called to check that all the created tasks are still running. */\r
-portBASE_TYPE xAreAltGenericQueueTasksStillRunning( void )\r
+BaseType_t xAreAltGenericQueueTasksStillRunning( void )\r
 {\r
-static unsigned long ulLastLoopCounter = 0, ulLastLoopCounter2 = 0;\r
+static uint32_t ulLastLoopCounter = 0, ulLastLoopCounter2 = 0;\r
 \r
        /* If the demo task is still running then we expect the loopcounters to\r
        have incremented since this function was last called. */\r