]> git.sur5r.net Git - freertos/blob - FreeRTOS/Demo/MB96340_Softune/FreeRTOS_96348hs_SK16FX100PMC/Src/main.c
Update to MIT licensed FreeRTOS V10.0.0 - see https://www.freertos.org/History.txt
[freertos] / FreeRTOS / Demo / MB96340_Softune / FreeRTOS_96348hs_SK16FX100PMC / Src / main.c
1 /*\r
2  * FreeRTOS Kernel V10.0.0\r
3  * Copyright (C) 2017 Amazon.com, Inc. or its affiliates.  All Rights Reserved.\r
4  *\r
5  * Permission is hereby granted, free of charge, to any person obtaining a copy of\r
6  * this software and associated documentation files (the "Software"), to deal in\r
7  * the Software without restriction, including without limitation the rights to\r
8  * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\r
9  * the Software, and to permit persons to whom the Software is furnished to do so,\r
10  * subject to the following conditions:\r
11  *\r
12  * The above copyright notice and this permission notice shall be included in all\r
13  * copies or substantial portions of the Software. If you wish to use our Amazon\r
14  * FreeRTOS name, please do so in a fair use way that does not cause confusion.\r
15  *\r
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r
17  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\r
18  * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\r
19  * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\r
20  * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\r
21  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\r
22  *\r
23  * http://www.FreeRTOS.org\r
24  * http://aws.amazon.com/freertos\r
25  *\r
26  * 1 tab == 4 spaces!\r
27  */\r
28 \r
29 /*\r
30  * Creates all the demo application tasks, then starts the scheduler.  The WEB\r
31  * documentation provides more details of the demo application tasks.\r
32  *\r
33  * In addition to the standard demo tasks, the follow demo specific tasks are\r
34  * create:\r
35  *\r
36  * The "Check" task.  This only executes every three seconds but has the highest\r
37  * priority so is guaranteed to get processor time.  Its main function is to\r
38  * check that all the other tasks are still operational.  Most tasks maintain\r
39  * a unique count that is incremented each time the task successfully completes\r
40  * its function.  Should any error occur within such a task the count is\r
41  * permanently halted.  The check task inspects the count of each task to ensure\r
42  * it has changed since the last time the check task executed.  If all the count\r
43  * variables have changed all the tasks are still executing error free, and the\r
44  * check task toggles the onboard LED.  Should any task contain an error at any time\r
45  * the LED toggle rate will change from 3 seconds to 500ms.\r
46  *\r
47  * The "Trace Utility" task.  This can be used to obtain trace and debug\r
48  * information via UART1.\r
49  */\r
50 \r
51 \r
52 /* Scheduler includes. */\r
53 #include "FreeRTOS.h"\r
54 #include "task.h"\r
55 #include "semphr.h"\r
56 \r
57 /* Demo application includes. */\r
58 #include "flash.h"\r
59 #include "integer.h"\r
60 #include "comtest2.h"\r
61 #include "PollQ.h"\r
62 #include "semtest.h"\r
63 #include "BlockQ.h"\r
64 #include "dynamic.h"\r
65 #include "flop.h"\r
66 #include "GenQTest.h"\r
67 #include "QPeek.h"\r
68 #include "blocktim.h"\r
69 #include "death.h"\r
70 #include "taskutility.h"\r
71 #include "partest.h"\r
72 #include "crflash.h"\r
73 #include "watchdog.h"\r
74 \r
75 /* Library includes. */\r
76 #include <watchdog.h>\r
77 \r
78 /*-----------------------------------------------------------*/\r
79 \r
80 /* Demo task priorities. */\r
81 #define WTC_TASK_PRIORITY                       ( tskIDLE_PRIORITY + 5 )\r
82 #define mainCHECK_TASK_PRIORITY         ( tskIDLE_PRIORITY + 4 )\r
83 #define TASK_UTILITY_PRIORITY           ( tskIDLE_PRIORITY )\r
84 #define mainSEM_TEST_PRIORITY           ( tskIDLE_PRIORITY + 3 )\r
85 #define mainCOM_TEST_PRIORITY           ( tskIDLE_PRIORITY + 2 )\r
86 #define mainQUEUE_POLL_PRIORITY         ( tskIDLE_PRIORITY + 2 )\r
87 #define mainQUEUE_BLOCK_PRIORITY        ( tskIDLE_PRIORITY + 2 )\r
88 #define mainDEATH_PRIORITY                      ( tskIDLE_PRIORITY + 1 )\r
89 #define mainLED_TASK_PRIORITY           ( tskIDLE_PRIORITY + 1 )\r
90 #define mainGENERIC_QUEUE_PRIORITY      ( tskIDLE_PRIORITY )\r
91 \r
92 /* Baud rate used by the COM test tasks. */\r
93 #define mainCOM_TEST_BAUD_RATE  ( ( unsigned long ) 19200 )\r
94 \r
95 /* The frequency at which the 'Check' tasks executes.  See the comments at the\r
96 top of the page.  When the system is operating error free the 'Check' task\r
97 toggles an LED every three seconds.  If an error is discovered in any task the\r
98 rate is increased to 500 milliseconds.  [in this case the '*' characters on the\r
99 LCD represent LED's] */\r
100 #define mainNO_ERROR_CHECK_DELAY        ( (TickType_t) 3000 / portTICK_PERIOD_MS )\r
101 #define mainERROR_CHECK_DELAY           ( (TickType_t) 500 / portTICK_PERIOD_MS )\r
102 \r
103 /* LED assignments for the demo tasks. */\r
104 #define mainNUM_FLASH_CO_ROUTINES       8\r
105 #define mainCOM_TEST_LED                        0x05\r
106 #define mainCHECK_TEST_LED                      0x07\r
107 \r
108 /*-----------------------------------------------------------*/\r
109 \r
110 /*\r
111  * The function that implements the Check task.  See the comments at the head\r
112  * of the page for implementation details.\r
113  */\r
114 static void     vErrorChecks( void *pvParameters );\r
115 \r
116 /*\r
117  * Called by the Check task.  Returns pdPASS if all the other tasks are found\r
118  * to be operating without error - otherwise returns pdFAIL.\r
119  */\r
120 static short prvCheckOtherTasksAreStillRunning( void );\r
121 \r
122 /*\r
123  * Perform any hardware setup necessary for the demo.\r
124  */\r
125 static void prvSetupHardware( void );\r
126 \r
127 /*-----------------------------------------------------------*/\r
128 \r
129 void main( void )\r
130 {\r
131         InitIrqLevels();                /* Initialize interrupts */\r
132         __set_il( 7 );                  /* Allow all levels      */\r
133 \r
134         prvSetupHardware();\r
135 \r
136         #if WATCHDOG == WTC_IN_TASK\r
137                 vStartWatchdogTask( WTC_TASK_PRIORITY );\r
138         #endif\r
139 \r
140         /* Start the standard demo application tasks. */\r
141         vStartLEDFlashTasks( mainLED_TASK_PRIORITY );\r
142         vStartIntegerMathTasks( tskIDLE_PRIORITY );\r
143         vStartPolledQueueTasks( mainQUEUE_POLL_PRIORITY );\r
144         vStartSemaphoreTasks( mainSEM_TEST_PRIORITY );\r
145         vStartBlockingQueueTasks( mainQUEUE_BLOCK_PRIORITY );\r
146         vStartDynamicPriorityTasks();\r
147         vStartFlashCoRoutines( mainNUM_FLASH_CO_ROUTINES );\r
148         vStartGenericQueueTasks( mainGENERIC_QUEUE_PRIORITY );\r
149         vCreateBlockTimeTasks();\r
150 \r
151         /* The definition INCLUDE_TraceListTasks is set within FreeRTOSConfig.h. */\r
152         #if INCLUDE_TraceListTasks == 1\r
153                 vUtilityStartTraceTask( TASK_UTILITY_PRIORITY );\r
154         #else\r
155                 vAltStartComTestTasks( mainCOM_TEST_PRIORITY, mainCOM_TEST_BAUD_RATE, mainCOM_TEST_LED - 1 );\r
156         #endif\r
157 \r
158         /* Start the 'Check' task which is defined in this file. */\r
159         xTaskCreate( vErrorChecks, "Check", configMINIMAL_STACK_SIZE, NULL, mainCHECK_TASK_PRIORITY, NULL );\r
160 \r
161         /* The suicide tasks must be started last as they record the number of other\r
162         tasks that exist within the system.  The value is then used to ensure at run\r
163         time the number of tasks that exists is within expected bounds. */\r
164         vCreateSuicidalTasks( mainDEATH_PRIORITY );\r
165 \r
166         /* Now start the scheduler.  Following this call the created tasks should\r
167         be executing. */\r
168         vTaskStartScheduler( );\r
169 \r
170         /* vTaskStartScheduler() will only return if an error occurs while the\r
171         idle task is being created. */\r
172         for( ;; );\r
173 }\r
174 /*-----------------------------------------------------------*/\r
175 \r
176 static void prvSetupHardware( void )\r
177 {\r
178         /* Initialise the port used by the LEDs. */\r
179         vParTestInitialise();\r
180 \r
181         /* See watchdog.h for definitions relating to the watchdog use. */\r
182         #if WATCHDOG != WTC_NONE\r
183                 InitWatchdog();\r
184         #endif\r
185 }\r
186 /*-----------------------------------------------------------*/\r
187 \r
188 static void vErrorChecks( void *pvParameters )\r
189 {\r
190 TickType_t xDelayPeriod = mainNO_ERROR_CHECK_DELAY;\r
191 \r
192         /* Just to remove compiler warnings. */\r
193         ( void ) pvParameters;\r
194 \r
195         /* Cycle for ever, delaying then checking all the other tasks are still\r
196         operating without error. */\r
197         for( ;; )\r
198         {\r
199                 /* Wait until it is time to check again.  The time we wait here depends\r
200                 on whether an error has been detected or not.  When an error is\r
201                 detected the time is shortened resulting in a faster LED flash rate. */\r
202                 vTaskDelay( xDelayPeriod );\r
203 \r
204                 /* See if the other tasks are all ok. */\r
205                 if( prvCheckOtherTasksAreStillRunning() != pdPASS )\r
206                 {\r
207                         /* An error occurred in one of the tasks so shorten the delay\r
208                         period - which has the effect of increasing the frequency of the\r
209                         LED toggle. */\r
210                         xDelayPeriod = mainERROR_CHECK_DELAY;\r
211                 }\r
212 \r
213                 /* Flash! */\r
214                 vParTestToggleLED( mainCHECK_TEST_LED );\r
215         }\r
216 }\r
217 /*-----------------------------------------------------------*/\r
218 \r
219 static short prvCheckOtherTasksAreStillRunning( void )\r
220 {\r
221         static short    sNoErrorFound = pdTRUE;\r
222 \r
223         /* The demo tasks maintain a count that increments every cycle of the task\r
224         provided that the task has never encountered an error.  This function\r
225         checks the counts maintained by the tasks to ensure they are still being\r
226         incremented.  A count remaining at the same value between calls therefore\r
227         indicates that an error has been detected.  Only tasks that do not flash\r
228         an LED are checked. */\r
229         if( xAreIntegerMathsTaskStillRunning() != pdTRUE )\r
230         {\r
231                 sNoErrorFound = pdFALSE;\r
232         }\r
233 \r
234         if( xArePollingQueuesStillRunning() != pdTRUE )\r
235         {\r
236                 sNoErrorFound = pdFALSE;\r
237         }\r
238 \r
239         if( xAreSemaphoreTasksStillRunning() != pdTRUE )\r
240         {\r
241                 sNoErrorFound = pdFALSE;\r
242         }\r
243 \r
244         if( xAreBlockingQueuesStillRunning() != pdTRUE )\r
245         {\r
246                 sNoErrorFound = pdFALSE;\r
247         }\r
248 \r
249         if( xAreDynamicPriorityTasksStillRunning() != pdTRUE )\r
250         {\r
251                 sNoErrorFound = pdFALSE;\r
252         }\r
253 \r
254         if( xAreFlashCoRoutinesStillRunning() != pdTRUE )\r
255         {\r
256                 sNoErrorFound = pdFALSE;\r
257         }\r
258 \r
259         if( xAreGenericQueueTasksStillRunning() != pdTRUE )\r
260         {\r
261                 sNoErrorFound = pdFALSE;\r
262         }\r
263 \r
264         if( xAreBlockTimeTestTasksStillRunning() != pdTRUE )\r
265         {\r
266                 sNoErrorFound = pdFALSE;\r
267         }\r
268 \r
269         if( xIsCreateTaskStillRunning() != pdTRUE )\r
270         {\r
271                 sNoErrorFound = pdFALSE;\r
272         }\r
273 \r
274         #if INCLUDE_TraceListTasks == 0\r
275         {\r
276                 if( xAreComTestTasksStillRunning() != pdTRUE )\r
277                 {\r
278                         sNoErrorFound = pdFALSE;\r
279                 }\r
280         }\r
281         #endif\r
282 \r
283         return sNoErrorFound;\r
284 }\r
285 /*-----------------------------------------------------------*/\r
286 \r
287 /* Idle hook function. */\r
288 #if configUSE_IDLE_HOOK == 1\r
289         void vApplicationIdleHook( void )\r
290         {\r
291                 /* Are we using the idle task to kick the watchdog?  See watchdog.h\r
292                 for watchdog kicking options. Note this is for demonstration only\r
293                 and is not a suggested method of servicing the watchdog in a real\r
294                 application. */\r
295                 #if WATCHDOG == WTC_IN_IDLE\r
296                         Kick_Watchdog();\r
297                 #endif\r
298 \r
299                 vCoRoutineSchedule();\r
300         }\r
301 #else\r
302         #if WATCHDOG == WTC_IN_IDLE\r
303                 #error configUSE_IDLE_HOOK must be set to 1 in FreeRTOSConfig.h if the watchdog is being cleared in the idle task hook.\r
304         #endif\r
305 #endif\r
306 \r
307 /*-----------------------------------------------------------*/\r
308 \r
309 /* Tick hook function. */\r
310 #if configUSE_TICK_HOOK == 1\r
311         void vApplicationTickHook( void )\r
312         {\r
313                 /* Are we using the tick to kick the watchdog?  See watchdog.h\r
314                 for watchdog kicking options.  Note this is for demonstration\r
315                 only and is not a suggested method of servicing the watchdog in\r
316                 a real application. */\r
317                 #if WATCHDOG == WTC_IN_TICK\r
318                         Kick_Watchdog();\r
319                 #endif\r
320         }\r
321 #else\r
322         #if WATCHDOG == WTC_IN_TICK\r
323                 #error configUSE_TICK_HOOK must be set to 1 in FreeRTOSConfig.h if the watchdog is being cleared in the tick hook.\r
324         #endif\r
325 #endif\r
326 /*-----------------------------------------------------------*/\r