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