]> git.sur5r.net Git - freertos/blobdiff - FreeRTOS/Demo/CORTEX_M0_Infineon_XMC1000_IAR_Keil_GCC/main-full.c
Roll up the minor changes checked into svn since V10.0.0 into new V10.0.1 ready for...
[freertos] / FreeRTOS / Demo / CORTEX_M0_Infineon_XMC1000_IAR_Keil_GCC / main-full.c
index 8d23357c39db957be4f01f4756b67689427c21e9..2f1dd6c99bea14d1eae2d3651b1536cf5b010883 100644 (file)
@@ -1,66 +1,29 @@
 /*\r
-    FreeRTOS V7.5.2 - Copyright (C) 2013 Real Time Engineers Ltd.\r
-\r
-    VISIT http://www.FreeRTOS.org TO ENSURE YOU ARE USING THE LATEST VERSION.\r
-\r
-    ***************************************************************************\r
-     *                                                                       *\r
-     *    FreeRTOS provides completely free yet professionally developed,    *\r
-     *    robust, strictly quality controlled, supported, and cross          *\r
-     *    platform software that has become a de facto standard.             *\r
-     *                                                                       *\r
-     *    Help yourself get started quickly and support the FreeRTOS         *\r
-     *    project by purchasing a FreeRTOS tutorial book, reference          *\r
-     *    manual, or both from: http://www.FreeRTOS.org/Documentation        *\r
-     *                                                                       *\r
-     *    Thank you!                                                         *\r
-     *                                                                       *\r
-    ***************************************************************************\r
-\r
-    This file is part of the FreeRTOS distribution.\r
-\r
-    FreeRTOS is free software; you can redistribute it and/or modify it under\r
-    the terms of the GNU General Public License (version 2) as published by the\r
-    Free Software Foundation >>!AND MODIFIED BY!<< the FreeRTOS exception.\r
-\r
-    >>! NOTE: The modification to the GPL is included to allow you to distribute\r
-    >>! a combined work that includes FreeRTOS without being obliged to provide\r
-    >>! the source code for proprietary components outside of the FreeRTOS\r
-    >>! kernel.\r
-\r
-    FreeRTOS is distributed in the hope that it will be useful, but WITHOUT ANY\r
-    WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS\r
-    FOR A PARTICULAR PURPOSE.  Full license text is available from the following\r
-    link: http://www.freertos.org/a00114.html\r
-\r
-    1 tab == 4 spaces!\r
-\r
-    ***************************************************************************\r
-     *                                                                       *\r
-     *    Having a problem?  Start by reading the FAQ "My application does   *\r
-     *    not run, what could be wrong?"                                     *\r
-     *                                                                       *\r
-     *    http://www.FreeRTOS.org/FAQHelp.html                               *\r
-     *                                                                       *\r
-    ***************************************************************************\r
-\r
-    http://www.FreeRTOS.org - Documentation, books, training, latest versions,\r
-    license and Real Time Engineers Ltd. contact details.\r
-\r
-    http://www.FreeRTOS.org/plus - A selection of FreeRTOS ecosystem products,\r
-    including FreeRTOS+Trace - an indispensable productivity tool, a DOS\r
-    compatible FAT file system, and our tiny thread aware UDP/IP stack.\r
-\r
-    http://www.OpenRTOS.com - Real Time Engineers ltd license FreeRTOS to High\r
-    Integrity Systems to sell under the OpenRTOS brand.  Low cost OpenRTOS\r
-    licenses offer ticketed support, indemnification and middleware.\r
-\r
-    http://www.SafeRTOS.com - High Integrity Systems also provide a safety\r
-    engineered and independently SIL3 certified version for use in safety and\r
-    mission critical applications that require provable dependability.\r
-\r
-    1 tab == 4 spaces!\r
-*/\r
+ * FreeRTOS Kernel V10.0.1\r
+ * Copyright (C) 2017 Amazon.com, Inc. or its affiliates.  All Rights Reserved.\r
+ *\r
+ * Permission is hereby granted, free of charge, to any person obtaining a copy of\r
+ * this software and associated documentation files (the "Software"), to deal in\r
+ * the Software without restriction, including without limitation the rights to\r
+ * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\r
+ * the Software, and to permit persons to whom the Software is furnished to do so,\r
+ * subject to the following conditions:\r
+ *\r
+ * The above copyright notice and this permission notice shall be included in all\r
+ * copies or substantial portions of the Software.\r
+ *\r
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\r
+ * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\r
+ * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\r
+ * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\r
+ * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\r
+ *\r
+ * http://www.FreeRTOS.org\r
+ * http://aws.amazon.com/freertos\r
+ *\r
+ * 1 tab == 4 spaces!\r
+ */\r
 \r
 /******************************************************************************\r
  * NOTE 1:  This project provides two demo applications.  A simple blinky style\r
  * containing an unexpected value is indicative of an error in the context\r
  * switching mechanism.\r
  *\r
+ * "Interrupt semaphore take" task - This task does nothing but block on a\r
+ * semaphore that is 'given' from the tick hook function (which is defined in\r
+ * main.c).  It toggles the fourth LED each time it receives the semaphore.  The\r
+ * Semahore is given every 50ms, so LED 4 toggles every 50ms.\r
+ *\r
  * "Flash timers" - A software timer callback function is defined that does\r
  * nothing but toggle an LED.  Three software timers are created that each\r
  * use the same callback function, but each toggles a different LED at a\r
- * different frequency.  One software timer uses LED1, another LED2 and the\r
- * third LED3.\r
+ * different frequency.  The timers control the first three LEDs.\r
  *\r
  * "Check" software timer - The check timer period is initially set to three\r
  * seconds.  Its callback function checks that all the standard demo tasks, and\r
  * without reporting any errors.  If the check timer callback discovers that a\r
  * task has either stalled, or reported an error, then it changes the period of\r
  * the check timer from the initial three seconds, to just 200ms.  The callback\r
- * function also toggles LED 4 each time it is called.  This provides a visual\r
- * indication of the system status:  If the LED toggles every three seconds,\r
- * then no issues have been discovered.  If the LED toggles every 200ms, then\r
- * an issue has been discovered with at least one task.\r
+ * function also toggles the fifth LED each time it is called.  This provides a\r
+ * visual indication of the system status:  If the LED toggles every three\r
+ * seconds then no issues have been discovered.  If the LED toggles every 200ms,\r
+ * then an issue has been discovered with at least one task.\r
  */\r
 \r
 /* Kernel includes. */\r
 #include "FreeRTOS.h"\r
 #include "task.h"\r
 #include "queue.h"\r
+#include "semphr.h"\r
 #include "timers.h"\r
 \r
 /* Common demo includes. */\r
 #include "recmutex.h"\r
 #include "ParTest.h"\r
 #include "dynamic.h"\r
+#include "QueueOverwrite.h"\r
+#include "QueueSet.h"\r
 \r
 /* The period after which the check timer will expire provided no errors have\r
 been reported by any of the standard demo tasks.  ms are converted to the\r
-equivalent in ticks using the portTICK_RATE_MS constant. */\r
-#define mainCHECK_TIMER_PERIOD_MS                      ( 3000UL / portTICK_RATE_MS )\r
+equivalent in ticks using the portTICK_PERIOD_MS constant. */\r
+#define mainCHECK_TIMER_PERIOD_MS                      ( 3000UL / portTICK_PERIOD_MS )\r
 \r
 /* The period at which the check timer will expire if an error has been\r
 reported in one of the standard demo tasks.  ms are converted to the equivalent\r
-in ticks using the portTICK_RATE_MS constant. */\r
-#define mainERROR_CHECK_TIMER_PERIOD_MS        ( 200UL / portTICK_RATE_MS )\r
+in ticks using the portTICK_PERIOD_MS constant. */\r
+#define mainERROR_CHECK_TIMER_PERIOD_MS        ( 200UL / portTICK_PERIOD_MS )\r
 \r
 /* A block time of zero simply means "don't block". */\r
 #define mainDONT_BLOCK                                         ( 0UL )\r
 \r
 /* The base toggle rate used by the flash timers.  Each toggle rate is a\r
 multiple of this. */\r
-#define mainFLASH_TIMER_BASE_RATE                      ( 200UL / portTICK_RATE_MS )\r
+#define mainFLASH_TIMER_BASE_RATE                      ( 200UL / portTICK_PERIOD_MS )\r
 \r
 /* The LED toggle by the check timer. */\r
 #define mainCHECK_LED                                          ( 4 )\r
 \r
+/* The LED toggled each time the task implemented by the prvSemaphoreTakeTask()\r
+function takes the semaphore that is given by the tick hook function. */\r
+#define mainSEMAPHORE_LED                                      ( 3 )\r
+\r
 /*-----------------------------------------------------------*/\r
 \r
 /*\r
@@ -158,13 +132,19 @@ extern void vMainToggleLED( void );
 /*\r
  * The check timer callback function, as described at the top of this file.\r
  */\r
-static void prvCheckTimerCallback( xTimerHandle xTimer );\r
+static void prvCheckTimerCallback( TimerHandle_t xTimer );\r
 \r
 /*\r
  * The flash timer callback function, as described at the top of this file.\r
  * This callback function is assigned to three separate software timers.\r
  */\r
-static void prvFlashTimerCallback( xTimerHandle xTimer );\r
+static void prvFlashTimerCallback( TimerHandle_t xTimer );\r
+\r
+/*\r
+ * The task that toggles an LED each time the semaphore 'given' by the tick\r
+ * hook function (which is defined in main.c) is 'taken' in the task.\r
+ */\r
+static void prvSemaphoreTakeTask( void *pvParameters );\r
 \r
 /*\r
  * Called by main() to create the comprehensive test/demo application if\r
@@ -176,15 +156,19 @@ void main_full( void );
 \r
 /* The following two variables are used to communicate the status of the\r
 register check tasks to the check software timer.  If the variables keep\r
-incrementing, then the register check tasks has not discovered any errors.  If\r
+incrementing, then the register check tasks have not discovered any errors.  If\r
 a variable stops incrementing, then an error has been found. */\r
 volatile unsigned long ulRegTest1LoopCounter = 0UL, ulRegTest2LoopCounter = 0UL;\r
 \r
+/* The semaphore that is given by the tick hook function (defined in main.c)\r
+and taken by the task implemented by the prvSemaphoreTakeTask() function.  The\r
+task toggles LED mainSEMAPHORE_LED each time the semaphore is taken. */\r
+SemaphoreHandle_t xLEDSemaphore = NULL;\r
 /*-----------------------------------------------------------*/\r
 \r
 void main_full( void )\r
 {\r
-xTimerHandle xTimer = NULL;\r
+TimerHandle_t xTimer = NULL;\r
 unsigned long ulTimer;\r
 const unsigned long ulTimersToCreate = 3L;\r
 /* The register test tasks are asm functions that don't use a stack.  The\r
@@ -195,22 +179,34 @@ const size_t xRegTestStackSize = 25U;
 \r
        /* Create the standard demo tasks */\r
        vCreateBlockTimeTasks();\r
+       vStartDynamicPriorityTasks();\r
        vStartCountingSemaphoreTasks();\r
        vStartRecursiveMutexTasks();\r
-       vStartDynamicPriorityTasks();\r
+       vStartQueueOverwriteTask( tskIDLE_PRIORITY );\r
+       vStartQueueSetTasks();\r
+\r
+       /* Create that is given from the tick hook function, and the task that\r
+       toggles an LED each time the semaphore is given. */\r
+       vSemaphoreCreateBinary( xLEDSemaphore );\r
+       xTaskCreate(    prvSemaphoreTakeTask,           /* Function that implements the task. */\r
+                                       "Sem",                                          /* Text name of the task. */\r
+                                       configMINIMAL_STACK_SIZE,       /* Stack allocated to the task (in words). */\r
+                                       NULL,                                           /* The task parameter is not used. */\r
+                                       configMAX_PRIORITIES - 2,       /* The priority of the task. */\r
+                                       NULL );                                         /* Don't receive a handle back, it is not needed. */\r
 \r
        /* Create the register test tasks as described at the top of this file.\r
        These are naked functions that don't use any stack.  A stack still has\r
        to be allocated to hold the task context. */\r
        xTaskCreate(    vRegTest1Task,                  /* Function that implements the task. */\r
-                                       ( signed char * ) "Reg1", /* Text name of the task. */\r
+                                       "Reg1",                                 /* Text name of the task. */\r
                                        xRegTestStackSize,              /* Stack allocated to the task. */\r
                                        NULL,                                   /* The task parameter is not used. */\r
                                        tskIDLE_PRIORITY,               /* The priority to assign to the task. */\r
                                        NULL );                                 /* Don't receive a handle back, it is not needed. */\r
 \r
        xTaskCreate(    vRegTest2Task,                  /* Function that implements the task. */\r
-                                       ( signed char * ) "Reg2", /* Text name of the task. */\r
+                                       "Reg2",                                 /* Text name of the task. */\r
                                        xRegTestStackSize,              /* Stack allocated to the task. */\r
                                        NULL,                                   /* The task parameter is not used. */\r
                                        tskIDLE_PRIORITY,               /* The priority to assign to the task. */\r
@@ -219,7 +215,7 @@ const size_t xRegTestStackSize = 25U;
        /* Create the three flash timers. */\r
        for( ulTimer = 0UL; ulTimer < ulTimersToCreate; ulTimer++ )\r
        {\r
-               xTimer = xTimerCreate(  ( const signed char * ) "FlashTimer",   /* A text name, purely to help debugging. */\r
+               xTimer = xTimerCreate(  "FlashTimer",                                                   /* A text name, purely to help debugging. */\r
                                                                ( mainFLASH_TIMER_BASE_RATE * ( ulTimer + 1UL ) ),      /* The timer period, in this case 3000ms (3s). */\r
                                                                pdTRUE,                                                                 /* This is an auto-reload timer, so xAutoReload is set to pdTRUE. */\r
                                                                ( void * ) ulTimer,                                             /* The ID is used to hold the number of the LED that will be flashed. */\r
@@ -234,11 +230,11 @@ const size_t xRegTestStackSize = 25U;
 \r
        /* Create the software timer that performs the 'check' functionality,\r
        as described at the top of this file. */\r
-       xTimer = xTimerCreate(  ( const signed char * ) "CheckTimer",/* A text name, purely to help debugging. */\r
-                                                       ( mainCHECK_TIMER_PERIOD_MS ),          /* The timer period, in this case 3000ms (3s). */\r
-                                                       pdTRUE,                                                         /* This is an auto-reload timer, so xAutoReload is set to pdTRUE. */\r
-                                                       ( void * ) 0,                                           /* The ID is not used, so can be set to anything. */\r
-                                                       prvCheckTimerCallback                           /* The callback function that inspects the status of all the other tasks. */\r
+       xTimer = xTimerCreate(  "CheckTimer",                                   /* A text name, purely to help debugging. */\r
+                                                       ( mainCHECK_TIMER_PERIOD_MS ),  /* The timer period, in this case 3000ms (3s). */\r
+                                                       pdTRUE,                                                 /* This is an auto-reload timer, so xAutoReload is set to pdTRUE. */\r
+                                                       ( void * ) 0,                                   /* The ID is not used, so can be set to anything. */\r
+                                                       prvCheckTimerCallback                   /* The callback function that inspects the status of all the other tasks. */\r
                                                );\r
 \r
        /* If the software timer was created successfully, start it.  It won't\r
@@ -263,7 +259,7 @@ const size_t xRegTestStackSize = 25U;
 /*-----------------------------------------------------------*/\r
 \r
 /* See the description at the top of this file. */\r
-static void prvCheckTimerCallback( xTimerHandle xTimer )\r
+static void prvCheckTimerCallback( TimerHandle_t xTimer )\r
 {\r
 static long lChangedTimerPeriodAlready = pdFALSE;\r
 static unsigned long ulLastRegTest1Value = 0, ulLastRegTest2Value = 0;\r
@@ -305,6 +301,16 @@ unsigned long ulErrorFound = pdFALSE;
        }\r
        ulLastRegTest2Value = ulRegTest2LoopCounter;\r
 \r
+       if( xAreQueueSetTasksStillRunning() != pdPASS )\r
+       {\r
+               ulErrorFound |= ( 0x01UL << 6UL );\r
+       }\r
+\r
+       if( xIsQueueOverwriteTaskStillRunning() != pdPASS )\r
+       {\r
+               ulErrorFound |= ( 0x01UL << 7UL );\r
+       }\r
+\r
        /* Toggle the check LED to give an indication of the system status.  If\r
        the LED toggles every mainCHECK_TIMER_PERIOD_MS milliseconds then\r
        everything is ok.  A faster toggle indicates an error. */\r
@@ -329,7 +335,21 @@ unsigned long ulErrorFound = pdFALSE;
 }\r
 /*-----------------------------------------------------------*/\r
 \r
-static void prvFlashTimerCallback( xTimerHandle xTimer )\r
+static void prvSemaphoreTakeTask( void *pvParameters )\r
+{\r
+       configASSERT( xLEDSemaphore );\r
+\r
+       for( ;; )\r
+       {\r
+               /* Wait to obtain the semaphore - which is given by the tick hook\r
+               function every 50ms. */\r
+               xSemaphoreTake( xLEDSemaphore, portMAX_DELAY );\r
+               vParTestToggleLED( mainSEMAPHORE_LED );\r
+       }\r
+}\r
+/*-----------------------------------------------------------*/\r
+\r
+static void prvFlashTimerCallback( TimerHandle_t xTimer )\r
 {\r
 unsigned long ulLED;\r
 \r