]> git.sur5r.net Git - freertos/blob - FreeRTOS/Demo/CORTEX_M0_LPC1114_LPCXpresso/RTOSDemo/Source/main-full.c
164002ca48e3c0ef3026c087ffc9d43950e216e4
[freertos] / FreeRTOS / Demo / CORTEX_M0_LPC1114_LPCXpresso / RTOSDemo / Source / main-full.c
1 /*\r
2     FreeRTOS V7.5.0 - Copyright (C) 2013 Real Time Engineers Ltd.\r
3 \r
4     VISIT http://www.FreeRTOS.org TO ENSURE YOU ARE USING THE LATEST VERSION.\r
5 \r
6     ***************************************************************************\r
7      *                                                                       *\r
8      *    FreeRTOS provides completely free yet professionally developed,    *\r
9      *    robust, strictly quality controlled, supported, and cross          *\r
10      *    platform software that has become a de facto standard.             *\r
11      *                                                                       *\r
12      *    Help yourself get started quickly and support the FreeRTOS         *\r
13      *    project by purchasing a FreeRTOS tutorial book, reference          *\r
14      *    manual, or both from: http://www.FreeRTOS.org/Documentation        *\r
15      *                                                                       *\r
16      *    Thank you!                                                         *\r
17      *                                                                       *\r
18     ***************************************************************************\r
19 \r
20     This file is part of the FreeRTOS distribution.\r
21 \r
22     FreeRTOS is free software; you can redistribute it and/or modify it under\r
23     the terms of the GNU General Public License (version 2) as published by the\r
24     Free Software Foundation >>!AND MODIFIED BY!<< the FreeRTOS exception.\r
25 \r
26     >>! NOTE: The modification to the GPL is included to allow you to distribute\r
27     >>! a combined work that includes FreeRTOS without being obliged to provide\r
28     >>! the source code for proprietary components outside of the FreeRTOS\r
29     >>! kernel.\r
30 \r
31     FreeRTOS is distributed in the hope that it will be useful, but WITHOUT ANY\r
32     WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS\r
33     FOR A PARTICULAR PURPOSE.  Full license text is available from the following\r
34     link: http://www.freertos.org/a00114.html\r
35 \r
36     1 tab == 4 spaces!\r
37 \r
38     ***************************************************************************\r
39      *                                                                       *\r
40      *    Having a problem?  Start by reading the FAQ "My application does   *\r
41      *    not run, what could be wrong?"                                     *\r
42      *                                                                       *\r
43      *    http://www.FreeRTOS.org/FAQHelp.html                               *\r
44      *                                                                       *\r
45     ***************************************************************************\r
46 \r
47     http://www.FreeRTOS.org - Documentation, books, training, latest versions,\r
48     license and Real Time Engineers Ltd. contact details.\r
49 \r
50     http://www.FreeRTOS.org/plus - A selection of FreeRTOS ecosystem products,\r
51     including FreeRTOS+Trace - an indispensable productivity tool, a DOS\r
52     compatible FAT file system, and our tiny thread aware UDP/IP stack.\r
53 \r
54     http://www.OpenRTOS.com - Real Time Engineers ltd license FreeRTOS to High\r
55     Integrity Systems to sell under the OpenRTOS brand.  Low cost OpenRTOS\r
56     licenses offer ticketed support, indemnification and middleware.\r
57 \r
58     http://www.SafeRTOS.com - High Integrity Systems also provide a safety\r
59     engineered and independently SIL3 certified version for use in safety and\r
60     mission critical applications that require provable dependability.\r
61 \r
62     1 tab == 4 spaces!\r
63 */\r
64 \r
65 /******************************************************************************\r
66  * NOTE 1:  This project provides two demo applications.  A simple blinky style\r
67  * project, and a more comprehensive test and demo application.  The\r
68  * mainCREATE_SIMPLE_BLINKY_DEMO_ONLY setting in main.c is used to select\r
69  * between the two.  See the notes on using mainCREATE_SIMPLE_BLINKY_DEMO_ONLY\r
70  * in main.c.  This file implements the comprehensive test and demo version.\r
71  *\r
72  * NOTE 2:  This file only contains the source code that is specific to the\r
73  * full demo.  Generic functions, such FreeRTOS hook functions, and functions\r
74  * required to configure the hardware, are defined in main.c.\r
75  ******************************************************************************\r
76  *\r
77  * main_full() creates a set of standard demo tasks (including a set of tasks\r
78  * that test the interrupt nesting behaviour), some application specific tasks,\r
79  * and a timer.  It then starts the scheduler.  The web documentation provides\r
80  * more details of the standard demo application tasks, which provide no\r
81  * particular functionality, but do provide a good example of how to use the\r
82  * FreeRTOS API.\r
83  *\r
84  * The interrupt nesting test tasks require that two timers are configured to\r
85  * generate interrupts.  The interrupt service routines are defined in\r
86  * IntQueueTimer.c, and can be used as examples for application writers.  They\r
87  * do not, however, directly demonstrate the use of FreeRTOS safe API functions\r
88  * (those that end in "FromISR").  Therefore, a dummy interrupt implementation\r
89  * called Dummy_IRQHandler() is provided at the end of main.c.\r
90  *\r
91  * In addition to the standard demo tasks, the following tasks and timer are\r
92  * defined and/or created within this file:\r
93  *\r
94  * "Reg test" tasks - These fill the registers with known values, then check\r
95  * that each register maintains its expected value for the lifetime of the\r
96  * task.  Each task uses a different set of values.  The reg test tasks execute\r
97  * with a very low priority, so get preempted very frequently.  A register\r
98  * containing an unexpected value is indicative of an error in the context\r
99  * switching mechanism.\r
100  *\r
101  * "Check" software timer - The check timer period is initially set to three\r
102  * seconds.  Its callback function checks that all the standard demo tasks, and\r
103  * the register check tasks, are not only still executing, but are executing\r
104  * without reporting any errors.  If the check timer callback discovers that a\r
105  * task has either stalled, or reported an error, then it changes the period of\r
106  * the check timer from the initial three seconds, to just 200ms.  The callback\r
107  * function also toggles the LED each time it is called.  This provides a visual\r
108  * indication of the system status:  If the LED toggles every three seconds,\r
109  * then no issues have been discovered.  If the LED toggles every 200ms, then\r
110  * an issue has been discovered with at least one task.\r
111  */\r
112 \r
113 /* Kernel includes. */\r
114 #include "FreeRTOS.h"\r
115 #include "task.h"\r
116 #include "queue.h"\r
117 #include "timers.h"\r
118 \r
119 /* Common demo includes. */\r
120 #include "blocktim.h"\r
121 #include "countsem.h"\r
122 #include "recmutex.h"\r
123 #include "IntQueue.h"\r
124 \r
125 /* Hardware specific includes. */\r
126 #include "lpc11xx.h"\r
127 \r
128 /* The period after which the check timer will expire provided no errors have\r
129 been reported by any of the standard demo tasks.  ms are converted to the\r
130 equivalent in ticks using the portTICK_RATE_MS constant. */\r
131 #define mainCHECK_TIMER_PERIOD_MS                       ( 3000UL / portTICK_RATE_MS )\r
132 \r
133 /* The period at which the check timer will expire if an error has been\r
134 reported in one of the standard demo tasks.  ms are converted to the equivalent\r
135 in ticks using the portTICK_RATE_MS constant. */\r
136 #define mainERROR_CHECK_TIMER_PERIOD_MS         ( 200UL / portTICK_RATE_MS )\r
137 \r
138 /* A block time of zero simply means "don't block". */\r
139 #define mainDONT_BLOCK                                          ( 0UL )\r
140 \r
141 /*-----------------------------------------------------------*/\r
142 \r
143 /*\r
144  * Register check tasks, as described at the top of this file.  The nature of\r
145  * these files necessitates that they are written in an assembly.\r
146  */\r
147 extern void vRegTest1Task( void *pvParameters );\r
148 extern void vRegTest2Task( void *pvParameters );\r
149 \r
150 /*\r
151  * The hardware only has a single LED.  Simply toggle it.\r
152  */\r
153 extern void vMainToggleLED( void );\r
154 \r
155 /*\r
156  * The check timer callback function, as described at the top of this file.\r
157  */\r
158 static void prvCheckTimerCallback( xTimerHandle xTimer );\r
159 \r
160 /*\r
161  * Called by main() to create the comprehensive test/demo application if\r
162  * mainCREATE_SIMPLE_BLINKY_DEMO_ONLY is not set to 1.\r
163  */\r
164 void main_full( void );\r
165 \r
166 /*-----------------------------------------------------------*/\r
167 \r
168 /* The following two variables are used to communicate the status of the\r
169 register check tasks to the check software timer.  If the variables keep\r
170 incrementing, then the register check tasks has not discovered any errors.  If\r
171 a variable stops incrementing, then an error has been found. */\r
172 volatile unsigned long ulRegTest1LoopCounter = 0UL, ulRegTest2LoopCounter = 0UL;\r
173 \r
174 /*-----------------------------------------------------------*/\r
175 \r
176 void main_full( void )\r
177 {\r
178 xTimerHandle xCheckTimer = NULL;\r
179 /* The register test tasks are asm functions that don't use a stack.  The\r
180 stack allocated just has to be large enough to hold the task context, and\r
181 for the additional required for the stack overflow checking to work (if\r
182 configured). */\r
183 const size_t xRegTestStackSize = 25U;\r
184 \r
185         /* Create the standard demo tasks, including the interrupt nesting test\r
186         tasks. */\r
187         vStartInterruptQueueTasks();\r
188         vCreateBlockTimeTasks();\r
189         vStartCountingSemaphoreTasks();\r
190         vStartRecursiveMutexTasks();\r
191 \r
192         /* Create the register test tasks as described at the top of this file.\r
193         These are naked functions that don't use any stack.  A stack still has\r
194         to be allocated to hold the task context. */\r
195         xTaskCreate(    vRegTest1Task,                  /* Function that implements the task. */\r
196                                         ( signed char * ) "Reg1", /* Text name of the task. */\r
197                                         xRegTestStackSize,              /* Stack allocated to the task. */\r
198                                         NULL,                                   /* The task parameter is not used. */\r
199                                         tskIDLE_PRIORITY,               /* The priority to assign to the task. */\r
200                                         NULL );                                 /* Don't receive a handle back, it is not needed. */\r
201 \r
202         xTaskCreate(    vRegTest2Task,                  /* Function that implements the task. */\r
203                                         ( signed char * ) "Reg2", /* Text name of the task. */\r
204                                         xRegTestStackSize,              /* Stack allocated to the task. */\r
205                                         NULL,                                   /* The task parameter is not used. */\r
206                                         tskIDLE_PRIORITY,               /* The priority to assign to the task. */\r
207                                         NULL );                                 /* Don't receive a handle back, it is not needed. */\r
208 \r
209         /* Create the software timer that performs the 'check' functionality,\r
210         as described at the top of this file. */\r
211         xCheckTimer = xTimerCreate( ( const signed char * ) "CheckTimer",/* A text name, purely to help debugging. */\r
212                                                                 ( mainCHECK_TIMER_PERIOD_MS ),          /* The timer period, in this case 3000ms (3s). */\r
213                                                                 pdTRUE,                                                         /* This is an auto-reload timer, so xAutoReload is set to pdTRUE. */\r
214                                                                 ( void * ) 0,                                           /* The ID is not used, so can be set to anything. */\r
215                                                                 prvCheckTimerCallback                           /* The callback function that inspects the status of all the other tasks. */\r
216                                                           );\r
217 \r
218         /* If the software timer was created successfully, start it.  It won't\r
219         actually start running until the scheduler starts.  A block time of\r
220         zero is used in this call, although any value could be used as the block\r
221         time will be ignored because the scheduler has not started yet. */\r
222         if( xCheckTimer != NULL )\r
223         {\r
224                 xTimerStart( xCheckTimer, mainDONT_BLOCK );\r
225         }\r
226 \r
227         /* Start the kernel.  From here on, only tasks and interrupts will run. */\r
228         vTaskStartScheduler();\r
229 \r
230         /* If all is well, the scheduler will now be running, and the following\r
231         line will never be reached.  If the following line does execute, then there\r
232         was     insufficient FreeRTOS heap memory available for the idle and/or timer\r
233         tasks to be created.  See the memory management section on the FreeRTOS web\r
234         site, or the FreeRTOS tutorial books for more details. */\r
235         for( ;; );\r
236 }\r
237 /*-----------------------------------------------------------*/\r
238 \r
239 /* See the description at the top of this file. */\r
240 static void prvCheckTimerCallback( xTimerHandle xTimer )\r
241 {\r
242 static long lChangedTimerPeriodAlready = pdFALSE;\r
243 static unsigned long ulLastRegTest1Value = 0, ulLastRegTest2Value = 0;\r
244 unsigned long ulErrorFound = pdFALSE;\r
245 \r
246         /* Check all the demo and test tasks to ensure that they are all still\r
247         running, and that none have detected an error. */\r
248         if( xAreIntQueueTasksStillRunning() != pdPASS )\r
249         {\r
250                 ulErrorFound |= ( 0x01UL << 0UL );\r
251         }\r
252 \r
253         if( xAreBlockTimeTestTasksStillRunning() != pdPASS )\r
254         {\r
255                 ulErrorFound |= ( 0x01UL << 1UL );\r
256         }\r
257 \r
258         if( xAreCountingSemaphoreTasksStillRunning() != pdPASS )\r
259         {\r
260                 ulErrorFound |= ( 0x01UL << 2UL );\r
261         }\r
262 \r
263         if( xAreRecursiveMutexTasksStillRunning() != pdPASS )\r
264         {\r
265                 ulErrorFound |= ( 0x01UL << 3UL );\r
266         }\r
267 \r
268         /* Check that the register test 1 task is still running. */\r
269         if( ulLastRegTest1Value == ulRegTest1LoopCounter )\r
270         {\r
271                 ulErrorFound |= ( 0x01UL << 4UL );\r
272         }\r
273         ulLastRegTest1Value = ulRegTest1LoopCounter;\r
274 \r
275         /* Check that the register test 2 task is still running. */\r
276         if( ulLastRegTest2Value == ulRegTest2LoopCounter )\r
277         {\r
278                 ulErrorFound |= ( 0x01UL << 5UL );\r
279         }\r
280         ulLastRegTest2Value = ulRegTest2LoopCounter;\r
281 \r
282         /* Toggle the check LED to give an indication of the system status.  If\r
283         the LED toggles every mainCHECK_TIMER_PERIOD_MS milliseconds then\r
284         everything is ok.  A faster toggle indicates an error. */\r
285         vMainToggleLED();\r
286 \r
287         /* Have any errors been latched in ulErrorFound?  If so, shorten the\r
288         period of the check timer to mainERROR_CHECK_TIMER_PERIOD_MS milliseconds.\r
289         This will result in an increase in the rate at which mainCHECK_LED\r
290         toggles. */\r
291         if( ulErrorFound != pdFALSE )\r
292         {\r
293                 if( lChangedTimerPeriodAlready == pdFALSE )\r
294                 {\r
295                         lChangedTimerPeriodAlready = pdTRUE;\r
296 \r
297                         /* This call to xTimerChangePeriod() uses a zero block time.\r
298                         Functions called from inside of a timer callback function must\r
299                         *never* attempt to block. */\r
300                         xTimerChangePeriod( xTimer, ( mainERROR_CHECK_TIMER_PERIOD_MS ), mainDONT_BLOCK );\r
301                 }\r
302         }\r
303 }\r
304 /*-----------------------------------------------------------*/\r
305 \r