]> git.sur5r.net Git - freertos/commitdiff
Add test/demonstration calls to xTaskGetIdleTaskHandle(), xTimerGetTimerTaskHandle...
authorrichardbarry <richardbarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>
Wed, 27 Jul 2011 14:16:24 +0000 (14:16 +0000)
committerrichardbarry <richardbarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>
Wed, 27 Jul 2011 14:16:24 +0000 (14:16 +0000)
git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@1514 1d2547de-c912-0410-9cb9-b8ca96c0e9e2

Demo/WIN32-MSVC/FreeRTOSConfig.h
Demo/WIN32-MSVC/WIN32.suo
Demo/WIN32-MSVC/main.c

index d946a0766a474944caead71ae1b74124a1c74f73..a8e04ae6e7b549232512c30264e2c51921d2359b 100644 (file)
@@ -111,6 +111,8 @@ to exclude the API function. */
 #define INCLUDE_vTaskDelay                                     1\r
 #define INCLUDE_uxTaskGetStackHighWaterMark    1\r
 #define INCLUDE_xTaskGetSchedulerState         1\r
+#define INCLUDE_xTimerGetTimerTaskHandle       1\r
+#define INCLUDE_xTaskGetIdleTaskHandle         1\r
 \r
 extern void vAssertCalled( void );\r
 #define configASSERT( x ) if( ( x ) == 0 ) vAssertCalled()\r
index 6f3cdfbcd0073334213a887a676be73334bef3e6..481e87bf0306909b2b9db3c3afab29f181709f19 100644 (file)
Binary files a/Demo/WIN32-MSVC/WIN32.suo and b/Demo/WIN32-MSVC/WIN32.suo differ
index 3ff9e4d7634c7b51573fe8e2c9306c3239ae7f4f..6aa0e3270dad056b209e28578e86af7a3eae820b 100644 (file)
@@ -86,6 +86,8 @@
 #include <FreeRTOS.h>\r
 #include "task.h"\r
 #include "queue.h"\r
+#include "timers.h"\r
+#include "semphr.h"\r
 \r
 /* Standard demo includes. */\r
 #include "BlockQ.h"\r
 /* Task function prototypes. */\r
 static void prvCheckTask( void *pvParameters );\r
 \r
+/* The variable into which error messages are latched. */\r
+static char *pcStatusMessage = "OK";\r
+\r
+/* This semaphore is created purely to test using the vSemaphoreDelete() API\r
+function.  It has no other purpose. */\r
+static xSemaphoreHandle xSemaphoreToDelete = NULL;\r
+\r
 /*-----------------------------------------------------------*/\r
 \r
 int main( void )\r
@@ -135,6 +144,10 @@ int main( void )
        vStartTimerDemoTask( mainTIMER_TEST_PERIOD );\r
        vStartCountingSemaphoreTasks();\r
 \r
+       /* Create the semaphore that will be deleted in the idle task hook.  This\r
+       is done purely to test the use of vSemaphoreDelete(). */\r
+       xSemaphoreToDelete = xSemaphoreCreateMutex();\r
+\r
        /* Start the scheduler itself. */\r
        vTaskStartScheduler();\r
 \r
@@ -148,7 +161,6 @@ static void prvCheckTask( void *pvParameters )
 {\r
 portTickType xNextWakeTime;\r
 const portTickType xCycleFrequency = 1000 / portTICK_RATE_MS;\r
-char *pcStatusMessage = "OK";\r
 \r
        /* Just to remove compiler warning. */\r
        ( void ) pvParameters;\r
@@ -213,10 +225,41 @@ char *pcStatusMessage = "OK";
 void vApplicationIdleHook( void )\r
 {\r
 const unsigned long ulMSToSleep = 5;\r
+xTaskHandle xIdleTaskHandle, xTimerTaskHandle;\r
+signed char *pcTaskName;\r
 \r
        /* Sleep to reduce CPU load, but don't sleep indefinitely in case there are\r
        tasks waiting to be terminated by the idle task. */\r
        Sleep( ulMSToSleep );\r
+\r
+       /* Demonstrate the use of the xTimerGetTimerTaskHandle() and \r
+       xTaskGetIdleTaskHandle() functions. */\r
+       xIdleTaskHandle = xTaskGetIdleTaskHandle();\r
+       xTimerTaskHandle = xTimerGetTimerTaskHandle();\r
+\r
+       /* This is the idle hook, so the current task handle should equal the \r
+       returned idle task handle. */\r
+       if( xTaskGetCurrentTaskHandle() != xIdleTaskHandle )\r
+       {\r
+               pcStatusMessage = "Error:  Returned idle task handle was incorrect";\r
+       }\r
+\r
+       /* Check the timer task handle was returned correctly. */\r
+       pcTaskName = pcTaskGetTaskName( xTimerTaskHandle );\r
+       if( strcmp( pcTaskName, "Tmr Svc" ) != 0 )\r
+       {\r
+               pcStatusMessage = "Error:  Returned timer task handle was incorrect";\r
+       }\r
+\r
+       /* If xSemaphoreToDelete has not already been deleted, then delete it now.\r
+       This is done purely to demonstrate the use of, and test, the \r
+       vSemaphoreDelete() macro.  Care must be taken not to delete a semaphore\r
+       that has tasks blocked on it. */\r
+       if( xSemaphoreToDelete != NULL )\r
+       {\r
+               vSemaphoreDelete( xSemaphoreToDelete );\r
+               xSemaphoreToDelete = NULL;\r
+       }\r
 }\r
 /*-----------------------------------------------------------*/\r
 \r