]> git.sur5r.net Git - freertos/blob - FreeRTOS/Demo/CORTEX_MB9A310_IAR_Keil/main-full.c
0be4bb084242d6ffb2a19b88d068409d5d2d3f41
[freertos] / FreeRTOS / Demo / CORTEX_MB9A310_IAR_Keil / main-full.c
1 /*\r
2     FreeRTOS V7.5.1 - 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  * main-blinky.c is included when the "Blinky" build configuration is used.\r
67  * main-full.c is included when the "Full" build configuration is used.\r
68  *\r
69  * main-full.c (this file) defines a comprehensive demo that creates many\r
70  * tasks, queues, semaphores and timers.  It also demonstrates how Cortex-M3\r
71  * interrupts can interact with FreeRTOS tasks/timers.\r
72  *\r
73  * This demo project runs on the SK-FM3-64PMC1 evaluation board, which is\r
74  * populated with an MB9A300 microcontroller.\r
75  *\r
76  * The main() Function:\r
77  * main() creates three demo specific software timers, one demo specific queue,\r
78  * and two demo specific tasks.  It then creates a whole host of 'standard\r
79  * demo' tasks/queues/semaphores, before starting the scheduler.  The demo\r
80  * specific tasks and timers are described in the comments here.  The standard\r
81  * demo tasks are described on the FreeRTOS.org web site.\r
82  *\r
83  * The standard demo tasks provide no specific functionality.  They are\r
84  * included to both test the FreeRTOS port, and provide examples of how the\r
85  * various FreeRTOS API functions can be used.\r
86  *\r
87  * This demo creates 43 tasks in total.  If you want a simpler demo, use the\r
88  * Blinky build configuration.\r
89  *\r
90  * The Demo Specific Queue Send Task:\r
91  * The queue send task is implemented by the prvQueueSendTask() function in\r
92  * this file.  prvQueueSendTask() sits in a loop that causes it to repeatedly\r
93  * block for 200 milliseconds, before sending the value 100 to the queue that\r
94  * was created within main().  Once the value is sent, the task loops back\r
95  * around to block for another 200 milliseconds.\r
96  *\r
97  * The Demo Specific Queue Receive Task:\r
98  * The queue receive task is implemented by the prvQueueReceiveTask() function\r
99  * in this file.  prvQueueReceiveTask() sits in a loop that causes it to\r
100  * repeatedly attempt to read data from the queue that was created within\r
101  * main().  When data is received, the task checks the value of the data, and\r
102  * if the value equals the expected 100, toggles an LED in the 7 segment display\r
103  * (see the documentation page for this demo on the FreeRTOS.org site to see\r
104  * which LED is used).  The 'block time' parameter passed to the queue receive\r
105  * function specifies that the task should be held in the Blocked state\r
106  * indefinitely to wait for data to be available on the queue.  The queue\r
107  * receive task will only leave the Blocked state when the queue send task\r
108  * writes to the queue.  As the queue send task writes to the queue every 200\r
109  * milliseconds, the queue receive task leaves the Blocked state every 200\r
110  * milliseconds, and therefore toggles the LED every 200 milliseconds.\r
111  *\r
112  * The Demo Specific LED Software Timer and the Button Interrupt:\r
113  * The user button SW2 is configured to generate an interrupt each time it is\r
114  * pressed.  The interrupt service routine switches an LED on, and resets the\r
115  * LED software timer.  The LED timer has a 5000 millisecond (5 second) period,\r
116  * and uses a callback function that is defined to just turn the LED off again.\r
117  * Therefore, pressing the user button will turn the LED on, and the LED will\r
118  * remain on until a full five seconds pass without the button being pressed.\r
119  * See the documentation page for this demo on the FreeRTOS.org web site to see\r
120  * which LED is used.\r
121  *\r
122  * The Demo Specific "Check" Callback Function:\r
123  * This is called each time the 'check' timer expires.  The check timer\r
124  * callback function inspects all the standard demo tasks to see if they are\r
125  * all executing as expected.  The check timer is initially configured to\r
126  * expire every three seconds, but will shorted this to every 500ms if an error\r
127  * is ever discovered.  The check timer callback toggles the LED defined by\r
128  * the mainCHECK_LED definition each time it executes.  Therefore, if LED\r
129  * mainCHECK_LED is toggling every three seconds, then no error have been found.\r
130  * If LED mainCHECK_LED is toggling every 500ms, then at least one errors has\r
131  * been found.  The variable pcStatusMessage is set to a string that indicates\r
132  * which task reported an error.  See the documentation page for this demo on\r
133  * the FreeRTOS.org web site to see which LED in the 7 segment display is used.\r
134  *\r
135  * The Demo Specific "Digit Counter" Callback Function:\r
136  * This is called each time the 'digit counter' timer expires.  It causes the\r
137  * digits 0 to 9 to be displayed in turn as the first character of the two\r
138  * character display.  The LEDs in the other digit of the two character\r
139  * display are used as general purpose LEDs, as described in this comment block.\r
140  *\r
141  * The Demo Specific Idle Hook Function:\r
142  * The idle hook function demonstrates how to query the amount of FreeRTOS heap\r
143  * space that is remaining (see vApplicationIdleHook() defined in this file).\r
144  *\r
145  * The Demo Specific Tick Hook Function:\r
146  * The tick hook function is used to test the interrupt safe software timer\r
147  * functionality.\r
148  */\r
149 \r
150 /* Kernel includes. */\r
151 #include "FreeRTOS.h"\r
152 #include "task.h"\r
153 #include "queue.h"\r
154 #include "timers.h"\r
155 \r
156 /* Fujitsu drivers/libraries. */\r
157 #include "mcu.h"\r
158 \r
159 /* Common demo includes. */\r
160 #include "partest.h"\r
161 #include "flash.h"\r
162 #include "BlockQ.h"\r
163 #include "death.h"\r
164 #include "blocktim.h"\r
165 #include "semtest.h"\r
166 #include "GenQTest.h"\r
167 #include "QPeek.h"\r
168 #include "recmutex.h"\r
169 #include "TimerDemo.h"\r
170 #include "comtest2.h"\r
171 #include "PollQ.h"\r
172 #include "countsem.h"\r
173 #include "dynamic.h"\r
174 \r
175 /* The rate at which data is sent to the queue, specified in milliseconds, and\r
176 converted to ticks using the portTICK_RATE_MS constant. */\r
177 #define mainQUEUE_SEND_FREQUENCY_MS     ( 200 / portTICK_RATE_MS )\r
178 \r
179 /* The number of items the queue can hold.  This is 1 as the receive task\r
180 will remove items as they are added, meaning the send task should always find\r
181 the queue empty. */\r
182 #define mainQUEUE_LENGTH                        ( 1 )\r
183 \r
184 /* The LED toggled by the check timer callback function.  This is an LED in the\r
185 second digit of the two digit 7 segment display.  See the documentation page\r
186 for this demo on the FreeRTOS.org web site to see which LED this relates to. */\r
187 #define mainCHECK_LED                           ( 1UL << 3UL )\r
188 \r
189 /* The LED toggle by the queue receive task.  This is an LED in the second digit\r
190 of the two digit 7 segment display.  See the documentation page for this demo on\r
191 the FreeRTOS.org web site to see which LED this relates to. */\r
192 #define mainTASK_CONTROLLED_LED         0x07UL\r
193 \r
194 /* The LED turned on by the button interrupt, and turned off by the LED timer.\r
195 This is an LED in the second digit of the two digit 7 segment display.  See the\r
196 documentation page for this demo on the FreeRTOS.org web site to see which LED\r
197 this relates to. */\r
198 #define mainTIMER_CONTROLLED_LED        0x05UL\r
199 \r
200 /* The LED used by the comtest tasks. See the comtest.c file for more\r
201 information.  The LEDs used by the comtest task are in the second digit of the\r
202 two digit 7 segment display.  See the documentation page for this demo on the\r
203 FreeRTOS.org web site to see which LEDs this relates to. */\r
204 #define mainCOM_TEST_LED                        0x03UL\r
205 \r
206 /* Constant used by the standard timer test functions. */\r
207 #define mainTIMER_TEST_PERIOD           ( 50 )\r
208 \r
209 /* Priorities used by the various different standard demo tasks. */\r
210 #define mainCHECK_TASK_PRIORITY         ( configMAX_PRIORITIES - 1 )\r
211 #define mainQUEUE_POLL_PRIORITY         ( tskIDLE_PRIORITY + 1 )\r
212 #define mainSEM_TEST_PRIORITY           ( tskIDLE_PRIORITY + 1 )\r
213 #define mainBLOCK_Q_PRIORITY            ( tskIDLE_PRIORITY + 2 )\r
214 #define mainCREATOR_TASK_PRIORITY   ( tskIDLE_PRIORITY + 3 )\r
215 #define mainFLASH_TASK_PRIORITY         ( tskIDLE_PRIORITY + 1 )\r
216 #define mainINTEGER_TASK_PRIORITY   ( tskIDLE_PRIORITY )\r
217 #define mainGEN_QUEUE_TASK_PRIORITY     ( tskIDLE_PRIORITY )\r
218 #define mainCOM_TEST_PRIORITY           ( tskIDLE_PRIORITY + 2 )\r
219 \r
220 /* Priorities defined in this main-full.c file. */\r
221 #define mainQUEUE_RECEIVE_TASK_PRIORITY         ( tskIDLE_PRIORITY + 2 )\r
222 #define mainQUEUE_SEND_TASK_PRIORITY            ( tskIDLE_PRIORITY + 1 )\r
223 \r
224 /* The period at which the check timer will expire, in ms, provided no errors\r
225 have been reported by any of the standard demo tasks.  ms are converted to the\r
226 equivalent in ticks using the portTICK_RATE_MS constant. */\r
227 #define mainCHECK_TIMER_PERIOD_MS                       ( 3000UL / portTICK_RATE_MS )\r
228 \r
229 /* The period at which the check timer will expire, in ms, if an error has been\r
230 reported in one of the standard demo tasks.  ms are converted to the equivalent\r
231 in ticks using the portTICK_RATE_MS constant. */\r
232 #define mainERROR_CHECK_TIMER_PERIOD_MS         ( 500UL / portTICK_RATE_MS )\r
233 \r
234 /* The period at which the digit counter timer will expire, in ms, and converted\r
235 to ticks using the portTICK_RATE_MS constant. */\r
236 #define mainDIGIT_COUNTER_TIMER_PERIOD_MS       ( 250UL / portTICK_RATE_MS )\r
237 \r
238 /* The LED will remain on until the button has not been pushed for a full\r
239 5000ms. */\r
240 #define mainLED_TIMER_PERIOD_MS                         ( 5000UL / portTICK_RATE_MS )\r
241 \r
242 /* A zero block time. */\r
243 #define mainDONT_BLOCK                                          ( 0UL )\r
244 \r
245 /* Baud rate used by the comtest tasks. */\r
246 #define mainCOM_TEST_BAUD_RATE                          ( 115200UL )\r
247 \r
248 /*-----------------------------------------------------------*/\r
249 \r
250 /*\r
251  * Setup the NVIC, LED outputs, and button inputs.\r
252  */\r
253 static void prvSetupHardware( void );\r
254 \r
255 /*\r
256  * The application specific (not common demo) tasks as described in the comments\r
257  * at the top of this file.\r
258  */\r
259 static void prvQueueReceiveTask( void *pvParameters );\r
260 static void prvQueueSendTask( void *pvParameters );\r
261 \r
262 /*\r
263  * The LED timer callback function.  This does nothing but switch an LED off.\r
264  */\r
265 static void prvLEDTimerCallback( xTimerHandle xTimer );\r
266 \r
267 /*\r
268  * The check timer callback function, as described at the top of this file.\r
269  */\r
270 static void prvCheckTimerCallback( xTimerHandle xTimer );\r
271 \r
272 /*\r
273  * The digit counter callback function, as described at the top of this file.\r
274  */\r
275 static void prvDigitCounterTimerCallback( xTimerHandle xTimer );\r
276 \r
277 /*\r
278  * This is not a 'standard' partest function, so the prototype is not in\r
279  * partest.h, and is instead included here.\r
280  */\r
281 void vParTestSetLEDFromISR( unsigned portBASE_TYPE uxLED, signed portBASE_TYPE xValue );\r
282 \r
283 /*-----------------------------------------------------------*/\r
284 \r
285 /* The queue used by both application specific demo tasks defined in this file. */\r
286 static xQueueHandle xQueue = NULL;\r
287 \r
288 /* The LED software timer.  This uses prvLEDTimerCallback() as it's callback\r
289 function. */\r
290 static xTimerHandle xLEDTimer = NULL;\r
291 \r
292 /* The digit counter software timer.  This displays a counting digit on one half\r
293 of the seven segment displays. */\r
294 static xTimerHandle xDigitCounterTimer = NULL;\r
295 \r
296 /* The check timer.  This uses prvCheckTimerCallback() as its callback\r
297 function. */\r
298 static xTimerHandle xCheckTimer = NULL;\r
299 \r
300 /* If an error is detected in a standard demo task, then pcStatusMessage will\r
301 be set to point to a string that identifies the offending task.  This is just\r
302 to make debugging easier. */\r
303 static const char *pcStatusMessage = NULL;\r
304 \r
305 /*-----------------------------------------------------------*/\r
306 \r
307 int main(void)\r
308 {\r
309         /* Configure the NVIC, LED outputs and button inputs. */\r
310         prvSetupHardware();\r
311 \r
312         /* Create the queue. */\r
313         xQueue = xQueueCreate( mainQUEUE_LENGTH, sizeof( unsigned long ) );\r
314 \r
315         if( xQueue != NULL )\r
316         {\r
317                 /* Start the two application specific demo tasks, as described in the\r
318                 comments at the top of this     file. */\r
319                 xTaskCreate( prvQueueReceiveTask, ( signed char * ) "Rx", configMINIMAL_STACK_SIZE, NULL, mainQUEUE_RECEIVE_TASK_PRIORITY, NULL );\r
320                 xTaskCreate( prvQueueSendTask, ( signed char * ) "TX", configMINIMAL_STACK_SIZE, NULL, mainQUEUE_SEND_TASK_PRIORITY, NULL );\r
321 \r
322                 /* Create the software timer that is responsible for turning off the LED\r
323                 if the button is not pushed within 5000ms, as described at the top of\r
324                 this file. */\r
325                 xLEDTimer = xTimerCreate(       ( const signed char * ) "LEDTimer", /* A text name, purely to help debugging. */\r
326                                                                         ( mainLED_TIMER_PERIOD_MS ),            /* The timer period, in this case 5000ms (5s). */\r
327                                                                         pdFALSE,                                                        /* This is a one shot timer, so xAutoReload is set to pdFALSE. */\r
328                                                                         ( void * ) 0,                                           /* The ID is not used, so can be set to anything. */\r
329                                                                         prvLEDTimerCallback                                     /* The callback function that switches the LED off. */\r
330                                                                 );\r
331 \r
332                 /* Create the software timer that performs the 'check' functionality,\r
333                 as described at the top of this file. */\r
334                 xCheckTimer = xTimerCreate( ( const signed char * ) "CheckTimer",/* A text name, purely to help debugging. */\r
335                                                                         ( mainCHECK_TIMER_PERIOD_MS ),          /* The timer period, in this case 3000ms (3s). */\r
336                                                                         pdTRUE,                                                         /* This is an auto-reload timer, so xAutoReload is set to pdTRUE. */\r
337                                                                         ( void * ) 0,                                           /* The ID is not used, so can be set to anything. */\r
338                                                                         prvCheckTimerCallback                           /* The callback function that inspects the status of all the other tasks. */\r
339                                                                   );\r
340 \r
341                 /* Create the software timer that performs the 'digit counting'\r
342                 functionality, as described at the top of this file. */\r
343                 xDigitCounterTimer = xTimerCreate( ( const signed char * ) "DigitCounter",      /* A text name, purely to help debugging. */\r
344                                                                         ( mainDIGIT_COUNTER_TIMER_PERIOD_MS ),                  /* The timer period, in this case 3000ms (3s). */\r
345                                                                         pdTRUE,                                                                                 /* This is an auto-reload timer, so xAutoReload is set to pdTRUE. */\r
346                                                                         ( void * ) 0,                                                                   /* The ID is not used, so can be set to anything. */\r
347                                                                         prvDigitCounterTimerCallback                                    /* The callback function that inspects the status of all the other tasks. */\r
348                                                                   );            \r
349                 \r
350                 /* Create a lot of 'standard demo' tasks.  Over 40 tasks are created in\r
351                 this demo.  For a much simpler demo, select the 'blinky' build\r
352                 configuration. */\r
353                 vStartBlockingQueueTasks( mainBLOCK_Q_PRIORITY );\r
354                 vCreateBlockTimeTasks();\r
355                 vStartSemaphoreTasks( mainSEM_TEST_PRIORITY );\r
356                 vStartGenericQueueTasks( mainGEN_QUEUE_TASK_PRIORITY );\r
357                 vStartLEDFlashTasks( mainFLASH_TASK_PRIORITY );\r
358                 vStartQueuePeekTasks();\r
359                 vStartRecursiveMutexTasks();\r
360                 vStartTimerDemoTask( mainTIMER_TEST_PERIOD );\r
361                 vAltStartComTestTasks( mainCOM_TEST_PRIORITY, mainCOM_TEST_BAUD_RATE, mainCOM_TEST_LED );\r
362                 vStartPolledQueueTasks( mainQUEUE_POLL_PRIORITY );\r
363                 vStartCountingSemaphoreTasks();\r
364                 vStartDynamicPriorityTasks();\r
365                 \r
366                 /* The suicide tasks must be created last, as they need to know how many\r
367                 tasks were running prior to their creation in order to ascertain whether\r
368                 or not the correct/expected number of tasks are running at any given\r
369                 time. */\r
370                 vCreateSuicidalTasks( mainCREATOR_TASK_PRIORITY );\r
371 \r
372                 /* Start the tasks and timer running. */\r
373                 vTaskStartScheduler();\r
374         }\r
375 \r
376         /* If all is well, the scheduler will now be running, and the following line\r
377         will never be reached.  If the following line does execute, then there was\r
378         insufficient FreeRTOS heap memory available for the idle and/or timer tasks\r
379         to be created.  See the memory management section on the FreeRTOS web site\r
380         for more details. */\r
381         for( ;; );\r
382 }\r
383 /*-----------------------------------------------------------*/\r
384 \r
385 static void prvCheckTimerCallback( xTimerHandle xTimer )\r
386 {\r
387         /* Check the standard demo tasks are running without error.   Latch the\r
388         latest reported error in the pcStatusMessage character pointer. */\r
389         if( xAreGenericQueueTasksStillRunning() != pdTRUE )\r
390         {\r
391                 pcStatusMessage = "Error: GenQueue";\r
392         }\r
393 \r
394         if( xAreQueuePeekTasksStillRunning() != pdTRUE )\r
395         {\r
396                 pcStatusMessage = "Error: QueuePeek\r\n";\r
397         }\r
398 \r
399         if( xAreBlockingQueuesStillRunning() != pdTRUE )\r
400         {\r
401                 pcStatusMessage = "Error: BlockQueue\r\n";\r
402         }\r
403 \r
404         if( xAreBlockTimeTestTasksStillRunning() != pdTRUE )\r
405         {\r
406                 pcStatusMessage = "Error: BlockTime\r\n";\r
407         }\r
408 \r
409         if( xAreSemaphoreTasksStillRunning() != pdTRUE )\r
410         {\r
411                 pcStatusMessage = "Error: SemTest\r\n";\r
412         }\r
413 \r
414         if( xIsCreateTaskStillRunning() != pdTRUE )\r
415         {\r
416                 pcStatusMessage = "Error: Death\r\n";\r
417         }\r
418 \r
419         if( xAreRecursiveMutexTasksStillRunning() != pdTRUE )\r
420         {\r
421                 pcStatusMessage = "Error: RecMutex\r\n";\r
422         }\r
423 \r
424         if( xAreComTestTasksStillRunning() != pdPASS )\r
425         {\r
426                 pcStatusMessage = "Error: ComTest\r\n";\r
427         }\r
428         \r
429         if( xAreTimerDemoTasksStillRunning( ( mainCHECK_TIMER_PERIOD_MS ) ) != pdTRUE )\r
430         {\r
431                 pcStatusMessage = "Error: TimerDemo";\r
432         }\r
433 \r
434         if( xArePollingQueuesStillRunning() != pdTRUE )\r
435         {\r
436                 pcStatusMessage = "Error: PollQueue";\r
437         }\r
438 \r
439         if( xAreCountingSemaphoreTasksStillRunning() != pdTRUE )\r
440         {\r
441                 pcStatusMessage = "Error: CountSem";\r
442         }\r
443         \r
444         if( xAreDynamicPriorityTasksStillRunning() != pdTRUE )\r
445         {\r
446                 pcStatusMessage = "Error: DynamicPriority";\r
447         }\r
448         \r
449         /* Toggle the check LED to give an indication of the system status.  If\r
450         the LED toggles every mainCHECK_TIMER_PERIOD_MS milliseconds then\r
451         everything is ok.  A faster toggle indicates an error.  vParTestToggleLED()\r
452         is not used to toggle this particular LED as it is on a different IP port\r
453         to to the LEDs controlled by ParTest.c.  A critical section is not required\r
454         as the only other place this port is accessed is from another timer - and\r
455         only one timer can be running at any one time. */\r
456         if( ( FM3_GPIO->PDOR3 & mainCHECK_LED ) != 0 )\r
457         {\r
458                 FM3_GPIO->PDOR3 &= ~mainCHECK_LED;\r
459         }\r
460         else\r
461         {\r
462                 FM3_GPIO->PDOR3 |= mainCHECK_LED;\r
463         }\r
464 \r
465         /* Have any errors been latch in pcStatusMessage?  If so, shorten the\r
466         period of the check timer to mainERROR_CHECK_TIMER_PERIOD_MS milliseconds.\r
467         This will result in an increase in the rate at which mainCHECK_LED\r
468         toggles. */\r
469         if( pcStatusMessage != NULL )\r
470         {\r
471                 /* This call to xTimerChangePeriod() uses a zero block time.  Functions\r
472                 called from inside of a timer callback function must *never* attempt\r
473                 to block. */\r
474                 xTimerChangePeriod( xCheckTimer, ( mainERROR_CHECK_TIMER_PERIOD_MS ), mainDONT_BLOCK );\r
475         }\r
476 }\r
477 /*-----------------------------------------------------------*/\r
478 \r
479 static void prvLEDTimerCallback( xTimerHandle xTimer )\r
480 {\r
481         /* The timer has expired - so no button pushes have occurred in the last\r
482         five seconds - turn the LED off. */\r
483         vParTestSetLED( mainTIMER_CONTROLLED_LED, pdFALSE );\r
484 }\r
485 /*-----------------------------------------------------------*/\r
486 \r
487 static void prvDigitCounterTimerCallback( xTimerHandle xTimer )\r
488 {\r
489 /* Define the bit patterns that display numbers on the seven segment display. */\r
490 static const unsigned short usNumbersPatterns[] = { 0x8004, 0xF204, 0x4804, 0x6004, 0x3204, 0x2404, 0x0404, 0xF104, 0x0004, 0x2004 };\r
491 static long lCounter = 0L;\r
492 const long lNumberOfDigits = 10L;\r
493 unsigned short usCheckLEDState;\r
494 \r
495         /* Unfortunately the LED uses the same port as the digit counter, so remember\r
496         the state of the check LED.  A critical section is not required to access\r
497         the port as only one timer can be executing at any one time. */\r
498         usCheckLEDState = ( FM3_GPIO->PDOR3 & mainCHECK_LED );\r
499         \r
500         /* Display the next number, counting up. */\r
501         FM3_GPIO->PDOR3 = usNumbersPatterns[ lCounter ] | usCheckLEDState;\r
502 \r
503         /* Move onto the next digit. */ \r
504         lCounter++;\r
505         \r
506         /* Ensure the counter does not go off the end of the array. */\r
507         if( lCounter >= lNumberOfDigits )\r
508         {\r
509                 lCounter = 0L;\r
510         }\r
511 }\r
512 /*-----------------------------------------------------------*/\r
513 \r
514 /* The ISR executed when the user button is pushed. */\r
515 void INT0_7_Handler( void )\r
516 {\r
517 portBASE_TYPE xHigherPriorityTaskWoken = pdFALSE;\r
518 \r
519         /* The button was pushed, so ensure the LED is on before resetting the\r
520         LED timer.  The LED timer will turn the LED off if the button is not\r
521         pushed within 5000ms. */\r
522         vParTestSetLEDFromISR( mainTIMER_CONTROLLED_LED, pdTRUE );\r
523 \r
524         /* This interrupt safe FreeRTOS function can be called from this interrupt\r
525         because the interrupt priority is below the\r
526         configMAX_SYSCALL_INTERRUPT_PRIORITY setting in FreeRTOSConfig.h. */\r
527         xTimerResetFromISR( xLEDTimer, &xHigherPriorityTaskWoken );\r
528 \r
529         /* Clear the interrupt before leaving.  This just clears all the interrupts\r
530         for simplicity, as only one is actually used in this simple demo anyway. */\r
531         FM3_EXTI->EICL = 0x0000;\r
532 \r
533         /* If calling xTimerResetFromISR() caused a task (in this case the timer\r
534         service/daemon task) to unblock, and the unblocked task has a priority\r
535         higher than or equal to the task that was interrupted, then\r
536         xHigherPriorityTaskWoken will now be set to pdTRUE, and calling\r
537         portEND_SWITCHING_ISR() will ensure the unblocked task runs next. */\r
538         portEND_SWITCHING_ISR( xHigherPriorityTaskWoken );\r
539 }\r
540 /*-----------------------------------------------------------*/\r
541 \r
542 static void prvQueueSendTask( void *pvParameters )\r
543 {\r
544 portTickType xNextWakeTime;\r
545 const unsigned long ulValueToSend = 100UL;\r
546 \r
547         /* The timer command queue will have been filled when the timer test tasks\r
548         were created in main() (this is part of the test they perform).  Therefore,\r
549         while the check and digit counter timers can be created in main(), they\r
550         cannot be started from main().  Once the scheduler has started, the timer\r
551         service task will drain the command queue, and now the check and digit\r
552         counter timers can be started successfully. */\r
553         xTimerStart( xCheckTimer, portMAX_DELAY );\r
554         xTimerStart( xDigitCounterTimer, portMAX_DELAY );\r
555 \r
556         /* Initialise xNextWakeTime - this only needs to be done once. */\r
557         xNextWakeTime = xTaskGetTickCount();\r
558 \r
559         for( ;; )\r
560         {\r
561                 /* Place this task in the blocked state until it is time to run again.\r
562                 The block time is specified in ticks, the constant used converts ticks\r
563                 to ms.  While in the Blocked state this task will not consume any CPU\r
564                 time. */\r
565                 vTaskDelayUntil( &xNextWakeTime, mainQUEUE_SEND_FREQUENCY_MS );\r
566 \r
567                 /* Send to the queue - causing the queue receive task to unblock and\r
568                 toggle an LED.  0 is used as the block time so the sending operation\r
569                 will not block - it shouldn't need to block as the queue should always\r
570                 be empty at this point in the code. */\r
571                 xQueueSend( xQueue, &ulValueToSend, mainDONT_BLOCK );\r
572         }\r
573 }\r
574 /*-----------------------------------------------------------*/\r
575 \r
576 static void prvQueueReceiveTask( void *pvParameters )\r
577 {\r
578 unsigned long ulReceivedValue;\r
579 \r
580         for( ;; )\r
581         {\r
582                 /* Wait until something arrives in the queue - this task will block\r
583                 indefinitely provided INCLUDE_vTaskSuspend is set to 1 in\r
584                 FreeRTOSConfig.h. */\r
585                 xQueueReceive( xQueue, &ulReceivedValue, portMAX_DELAY );\r
586 \r
587                 /*  To get here something must have been received from the queue, but\r
588                 is it the expected value?  If it is, toggle the LED. */\r
589                 if( ulReceivedValue == 100UL )\r
590                 {\r
591                         vParTestToggleLED( mainTASK_CONTROLLED_LED );\r
592                 }\r
593         }\r
594 }\r
595 /*-----------------------------------------------------------*/\r
596 \r
597 static void prvSetupHardware( void )\r
598 {\r
599 const unsigned short usButtonInputBit = 0x01U;\r
600 \r
601         SystemInit();\r
602         SystemCoreClockUpdate();\r
603 \r
604         /* Initialise the IO used for the LEDs on the 7 segment displays. */\r
605         vParTestInitialise();   \r
606         \r
607         /* Set the switches to input (P18->P1F). */\r
608         FM3_GPIO->DDR5 = 0x0000;\r
609         FM3_GPIO->PFR5 = 0x0000;\r
610 \r
611         /* Assign the button input as GPIO. */\r
612         FM3_GPIO->PFR5 |= usButtonInputBit;\r
613         \r
614         /* Button interrupt on falling edge. */\r
615         FM3_EXTI->ELVR  = 0x0003;\r
616 \r
617         /* Clear all external interrupts. */\r
618         FM3_EXTI->EICL  = 0x0000;\r
619 \r
620         /* Enable the button interrupt. */\r
621         FM3_EXTI->ENIR |= usButtonInputBit;\r
622         \r
623         /* Setup the GPIO and the NVIC for the switch used in this simple demo. */\r
624         NVIC_SetPriority( EXINT0_7_IRQn, configLIBRARY_MAX_SYSCALL_INTERRUPT_PRIORITY );\r
625     NVIC_EnableIRQ( EXINT0_7_IRQn );\r
626 }\r
627 /*-----------------------------------------------------------*/\r
628 \r
629 void vApplicationMallocFailedHook( void )\r
630 {\r
631         /* Called if a call to pvPortMalloc() fails because there is insufficient\r
632         free memory available in the FreeRTOS heap.  pvPortMalloc() is called\r
633         internally by FreeRTOS API functions that create tasks, queues, software\r
634         timers, and semaphores.  The size of the FreeRTOS heap is set by the\r
635         configTOTAL_HEAP_SIZE configuration constant in FreeRTOSConfig.h. */\r
636         for( ;; );\r
637 }\r
638 /*-----------------------------------------------------------*/\r
639 \r
640 void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )\r
641 {\r
642         ( void ) pcTaskName;\r
643         ( void ) pxTask;\r
644 \r
645         /* Run time stack overflow checking is performed if\r
646         configconfigCHECK_FOR_STACK_OVERFLOW is defined to 1 or 2.  This hook\r
647         function is called if a stack overflow is detected. */\r
648         taskDISABLE_INTERRUPTS();\r
649         for( ;; );\r
650 }\r
651 /*-----------------------------------------------------------*/\r
652 \r
653 void vApplicationIdleHook( void )\r
654 {\r
655 volatile size_t xFreeStackSpace;\r
656 \r
657         /* This function is called on each cycle of the idle task.  In this case it\r
658         does nothing useful, other than report the amount of FreeRTOS heap that\r
659         remains unallocated. */\r
660         xFreeStackSpace = xPortGetFreeHeapSize();\r
661 \r
662         if( xFreeStackSpace > 100 )\r
663         {\r
664                 /* By now, the kernel has allocated everything it is going to, so\r
665                 if there is a lot of heap remaining unallocated then\r
666                 the value of configTOTAL_HEAP_SIZE in FreeRTOSConfig.h can be\r
667                 reduced accordingly. */\r
668         }\r
669 }\r
670 /*-----------------------------------------------------------*/\r
671 \r
672 void vApplicationTickHook( void )\r
673 {\r
674         /* Call the periodic timer test, which tests the timer API functions that\r
675         can be called from an ISR. */\r
676         vTimerPeriodicISRTests();\r
677 }       \r
678 /*-----------------------------------------------------------*/\r
679 \r