]> git.sur5r.net Git - freertos/blob - FreeRTOS/Demo/CORTEX_MPU_LPC1768_GCC_RedSuite/src/main.c
Update FreeRTOS version number to V7.5.3
[freertos] / FreeRTOS / Demo / CORTEX_MPU_LPC1768_GCC_RedSuite / src / main.c
1 /*\r
2     FreeRTOS V7.5.3 - Copyright (C) 2013 Real Time Engineers Ltd. \r
3     All rights reserved\r
4 \r
5     VISIT http://www.FreeRTOS.org TO ENSURE YOU ARE USING THE LATEST VERSION.\r
6 \r
7     ***************************************************************************\r
8      *                                                                       *\r
9      *    FreeRTOS provides completely free yet professionally developed,    *\r
10      *    robust, strictly quality controlled, supported, and cross          *\r
11      *    platform software that has become a de facto standard.             *\r
12      *                                                                       *\r
13      *    Help yourself get started quickly and support the FreeRTOS         *\r
14      *    project by purchasing a FreeRTOS tutorial book, reference          *\r
15      *    manual, or both from: http://www.FreeRTOS.org/Documentation        *\r
16      *                                                                       *\r
17      *    Thank you!                                                         *\r
18      *                                                                       *\r
19     ***************************************************************************\r
20 \r
21     This file is part of the FreeRTOS distribution.\r
22 \r
23     FreeRTOS is free software; you can redistribute it and/or modify it under\r
24     the terms of the GNU General Public License (version 2) as published by the\r
25     Free Software Foundation >>!AND MODIFIED BY!<< the FreeRTOS exception.\r
26 \r
27     >>! NOTE: The modification to the GPL is included to allow you to distribute\r
28     >>! a combined work that includes FreeRTOS without being obliged to provide\r
29     >>! the source code for proprietary components outside of the FreeRTOS\r
30     >>! kernel.\r
31 \r
32     FreeRTOS is distributed in the hope that it will be useful, but WITHOUT ANY\r
33     WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS\r
34     FOR A PARTICULAR PURPOSE.  Full license text is available from the following\r
35     link: http://www.freertos.org/a00114.html\r
36 \r
37     1 tab == 4 spaces!\r
38 \r
39     ***************************************************************************\r
40      *                                                                       *\r
41      *    Having a problem?  Start by reading the FAQ "My application does   *\r
42      *    not run, what could be wrong?"                                     *\r
43      *                                                                       *\r
44      *    http://www.FreeRTOS.org/FAQHelp.html                               *\r
45      *                                                                       *\r
46     ***************************************************************************\r
47 \r
48     http://www.FreeRTOS.org - Documentation, books, training, latest versions,\r
49     license and Real Time Engineers Ltd. contact details.\r
50 \r
51     http://www.FreeRTOS.org/plus - A selection of FreeRTOS ecosystem products,\r
52     including FreeRTOS+Trace - an indispensable productivity tool, a DOS\r
53     compatible FAT file system, and our tiny thread aware UDP/IP stack.\r
54 \r
55     http://www.OpenRTOS.com - Real Time Engineers ltd license FreeRTOS to High\r
56     Integrity Systems to sell under the OpenRTOS brand.  Low cost OpenRTOS\r
57     licenses offer ticketed support, indemnification and middleware.\r
58 \r
59     http://www.SafeRTOS.com - High Integrity Systems also provide a safety\r
60     engineered and independently SIL3 certified version for use in safety and\r
61     mission critical applications that require provable dependability.\r
62 \r
63     1 tab == 4 spaces!\r
64 */\r
65 \r
66 #error "The batch file Demo\CORTEX_LPC1768_GCC_RedSuite\CreateProjectDirectoryStructure.bat must be executed before the first build.  After executing the batch file hit F5 to refrech the Eclipse project, then delete this line."\r
67 \r
68 \r
69 /*\r
70  * This file demonstrates the use of FreeRTOS-MPU.  It creates tasks in both\r
71  * User mode and Privileged mode, and using both the original xTaskCreate() and\r
72  * the new xTaskCreateRestricted() API functions.  The purpose of each created\r
73  * task is documented in the comments above the task function prototype (in\r
74  * this file), with the task behaviour demonstrated and documented within the \r
75  * task function itself.  In addition a queue is used to demonstrate passing\r
76  * data between protected/restricted tasks as well as passing data between an\r
77  * interrupt and a protected/restricted task.\r
78  */\r
79 \r
80 \r
81 \r
82 /* Library includes. */\r
83 #include <string.h>\r
84 \r
85 /* Scheduler includes. */\r
86 #include "FreeRTOS.h"\r
87 #include "task.h"\r
88 #include "queue.h"\r
89 #include "semphr.h"\r
90 \r
91 /* Red Suite includes. */\r
92 #include "lcd_driver.h"\r
93 #include "lcd.h"\r
94 \r
95 \r
96 /*-----------------------------------------------------------*/\r
97 \r
98 /* Misc constants. */\r
99 #define mainDONT_BLOCK                                  ( 0 )\r
100 \r
101 /* Definitions for the messages that can be sent to the check task. */\r
102 #define mainREG_TEST_1_STILL_EXECUTING  ( 0 )\r
103 #define mainREG_TEST_2_STILL_EXECUTING  ( 1 )\r
104 #define mainPRINT_SYSTEM_STATUS                 ( 2 )\r
105 \r
106 /* GCC specifics. */\r
107 #define mainALIGN_TO( x )                               __attribute__((aligned(x)))\r
108 \r
109 /* Hardware specifics.  The start and end address are chosen to ensure the\r
110 required GPIO are covered while also ensuring the necessary alignment is\r
111 achieved. */\r
112 #define mainGPIO_START_ADDRESS                  ( ( unsigned long * ) 0x2009c000 )\r
113 #define mainGPIO_END_ADDRESS                    ( mainGPIO_START_ADDRESS + ( 64 * 1024 ) )\r
114 \r
115 \r
116 /*-----------------------------------------------------------*/\r
117 /* Prototypes for functions that implement tasks. -----------*/\r
118 /*-----------------------------------------------------------*/\r
119 \r
120 /* \r
121  * Prototype for the reg test tasks.  Amongst other things, these fill the CPU\r
122  * registers with known values before checking that the registers still contain\r
123  * the expected values.  Each of the two tasks use different values so an error\r
124  * in the context switch mechanism can be caught.  Both reg test tasks execute\r
125  * at the idle priority so will get preempted regularly.  Each task repeatedly\r
126  * sends a message on a queue so long as it remains functioning correctly.  If\r
127  * an error is detected within the task the task is simply deleted.\r
128  */\r
129 static void prvRegTest1Task( void *pvParameters );\r
130 static void prvRegTest2Task( void *pvParameters );\r
131 \r
132 /*\r
133  * Prototype for the check task.  The check task demonstrates various features\r
134  * of the MPU before entering a loop where it waits for messages to arrive on a\r
135  * queue.\r
136  *\r
137  * Two types of messages can be processes:\r
138  *\r
139  * 1) "I'm Alive" messages sent from the reg test tasks, indicating that the\r
140  *    task is still operational.\r
141  *\r
142  * 2) "Print Status commands" sent periodically by the tick hook function (and\r
143  *    therefore from within an interrupt) which command the check task to write\r
144  *    either pass or fail to the terminal, depending on the status of the reg\r
145  *    test tasks.\r
146  */\r
147 static void prvCheckTask( void *pvParameters );\r
148 \r
149 /*\r
150  * Prototype for a task created in User mode using the original vTaskCreate() \r
151  * API function.  The task demonstrates the characteristics of such a task,\r
152  * before simply deleting itself.\r
153  */\r
154 static void prvOldStyleUserModeTask( void *pvParameters );\r
155 \r
156 /*\r
157  * Prototype for a task created in Privileged mode using the original \r
158  * vTaskCreate() API function.  The task demonstrates the characteristics of \r
159  * such a task, before simply deleting itself.\r
160  */\r
161 static void prvOldStylePrivilegedModeTask( void *pvParameters );\r
162 \r
163 \r
164 /*-----------------------------------------------------------*/\r
165 /* Prototypes for other misc functions.  --------------------*/\r
166 /*-----------------------------------------------------------*/\r
167 \r
168 /*\r
169  * Just configures any clocks and IO necessary.\r
170  */\r
171 static void prvSetupHardware( void );\r
172 \r
173 /*\r
174  * Simply deletes the calling task.  The function is provided only because it\r
175  * is simpler to call from asm code than the normal vTaskDelete() API function.\r
176  * It has the noinline attribute because it is called from asm code.\r
177  */\r
178 static void prvDeleteMe( void ) __attribute__((noinline));\r
179 \r
180 /*\r
181  * Used by both reg test tasks to send messages to the check task.  The message\r
182  * just lets the check task know that the task is still functioning correctly.\r
183  * If a reg test task detects an error it will delete itself, and in so doing\r
184  * prevent itself from sending any more 'I'm Alive' messages to the check task.\r
185  */\r
186 static void prvSendImAlive( xQueueHandle xHandle, unsigned long ulTaskNumber );\r
187 \r
188 /*\r
189  * The check task is created with access to three memory regions (plus its\r
190  * stack).  Each memory region is configured with different parameters and\r
191  * prvTestMemoryRegions() demonstrates what can and cannot be accessed for each\r
192  * region.  prvTestMemoryRegions() also demonstrates a task that was created\r
193  * as a privileged task settings its own privilege level down to that of a user\r
194  * task.\r
195  */\r
196 static void prvTestMemoryRegions( void );\r
197 \r
198 /*-----------------------------------------------------------*/\r
199 \r
200 /* The handle of the queue used to communicate between tasks and between tasks\r
201 and interrupts.  Note that this is a file scope variable that falls outside of\r
202 any MPU region.  As such other techniques have to be used to allow the tasks\r
203 to gain access to the queue.  See the comments in the tasks themselves for \r
204 further information. */\r
205 static xQueueHandle xFileScopeCheckQueue = NULL;\r
206 \r
207 \r
208 \r
209 /*-----------------------------------------------------------*/\r
210 /* Data used by the 'check' task. ---------------------------*/\r
211 /*-----------------------------------------------------------*/\r
212 \r
213 /* Define the constants used to allocate the check task stack.  Note that the\r
214 stack size is defined in words, not bytes. */\r
215 #define mainCHECK_TASK_STACK_SIZE_WORDS 128\r
216 #define mainCHECK_TASK_STACK_ALIGNMENT ( mainCHECK_TASK_STACK_SIZE_WORDS * sizeof( portSTACK_TYPE ) )\r
217 \r
218 /* Declare the stack that will be used by the check task.  The kernel will\r
219  automatically create an MPU region for the stack.  The stack alignment must \r
220  match its size, so if 128 words are reserved for the stack then it must be \r
221  aligned to ( 128 * 4 ) bytes. */\r
222 static portSTACK_TYPE xCheckTaskStack[ mainCHECK_TASK_STACK_SIZE_WORDS ] mainALIGN_TO( mainCHECK_TASK_STACK_ALIGNMENT );\r
223 \r
224 /* Declare three arrays - an MPU region will be created for each array\r
225 using the xTaskParameters structure below.  THIS IS JUST TO DEMONSTRATE THE\r
226 MPU FUNCTIONALITY, the data is not used by the check tasks primary function\r
227 of monitoring the reg test tasks and printing out status information.\r
228 \r
229 Note that the arrays allocate slightly more RAM than is actually assigned to \r
230 the MPU region.  This is to permit writes off the end of the array to be \r
231 detected even when the arrays are placed in adjacent memory locations (with no \r
232 gaps between them).  The align size must be a power of two. */\r
233 #define mainREAD_WRITE_ARRAY_SIZE 130\r
234 #define mainREAD_WRITE_ALIGN_SIZE 128\r
235 char cReadWriteArray[ mainREAD_WRITE_ARRAY_SIZE ] mainALIGN_TO( mainREAD_WRITE_ALIGN_SIZE );\r
236 \r
237 #define mainREAD_ONLY_ARRAY_SIZE 260\r
238 #define mainREAD_ONLY_ALIGN_SIZE 256\r
239 char cReadOnlyArray[ mainREAD_ONLY_ARRAY_SIZE ] mainALIGN_TO( mainREAD_ONLY_ALIGN_SIZE );\r
240 \r
241 #define mainPRIVILEGED_ONLY_ACCESS_ARRAY_SIZE 130\r
242 #define mainPRIVILEGED_ONLY_ACCESS_ALIGN_SIZE 128\r
243 char cPrivilegedOnlyAccessArray[ mainPRIVILEGED_ONLY_ACCESS_ALIGN_SIZE ] mainALIGN_TO( mainPRIVILEGED_ONLY_ACCESS_ALIGN_SIZE );\r
244 \r
245 /* Fill in a xTaskParameters structure to define the check task - this is the\r
246 structure passed to the xTaskCreateRestricted() function. */\r
247 static const xTaskParameters xCheckTaskParameters =\r
248 {\r
249         prvCheckTask,                                                           /* pvTaskCode - the function that implements the task. */\r
250         ( signed char * ) "Check",                                      /* pcName                       */\r
251         mainCHECK_TASK_STACK_SIZE_WORDS,                        /* usStackDepth - defined in words, not bytes. */\r
252         ( void * ) 0x12121212,                                          /* pvParameters - this value is just to test that the parameter is being passed into the task correctly. */\r
253         ( tskIDLE_PRIORITY + 1 ) | portPRIVILEGE_BIT,/* uxPriority - this is the highest priority task in the system.  The task is created in privileged mode to demonstrate accessing the privileged only data. */\r
254         xCheckTaskStack,                                                        /* puxStackBuffer - the array to use as the task stack, as declared above. */\r
255 \r
256         /* xRegions - In this case the xRegions array is used to create MPU regions\r
257         for all three of the arrays declared directly above.  Each MPU region is\r
258         created with different parameters.  Again, THIS IS JUST TO DEMONSTRATE THE\r
259         MPU FUNCTIONALITY, the data is not used by the check tasks primary function\r
260         of monitoring the reg test tasks and printing out status information.*/\r
261         {                                                                                       \r
262                 /* Base address                                 Length                                                                  Parameters */\r
263         { cReadWriteArray,                              mainREAD_WRITE_ALIGN_SIZE,                              portMPU_REGION_READ_WRITE },\r
264         { cReadOnlyArray,                               mainREAD_ONLY_ALIGN_SIZE,                               portMPU_REGION_READ_ONLY },\r
265         { cPrivilegedOnlyAccessArray,   mainPRIVILEGED_ONLY_ACCESS_ALIGN_SIZE,  portMPU_REGION_PRIVILEGED_READ_WRITE }\r
266         }\r
267 };\r
268 \r
269 /* Three MPU regions are defined for use by the 'check' task when the task is \r
270 created.  These are only used to demonstrate the MPU features and are not\r
271 actually necessary for the check task to fulfill its primary purpose.  Instead\r
272 the MPU regions are replaced with those defined by xAltRegions prior to the \r
273 check task receiving any data on the queue or printing any messages to the\r
274 debug console.  The MPU region defined below covers the GPIO peripherals used\r
275 to write to the LCD. */\r
276 static const xMemoryRegion xAltRegions[ portNUM_CONFIGURABLE_REGIONS ] =\r
277 {                                                                                       \r
278         /* Base address                         Length                  Parameters */\r
279         { mainGPIO_START_ADDRESS,       ( 64 * 1024 ),  portMPU_REGION_READ_WRITE },\r
280         { 0,                                            0,                              0 },\r
281         { 0,                                            0,                              0 }\r
282 };\r
283 \r
284 \r
285 \r
286 /*-----------------------------------------------------------*/\r
287 /* Data used by the 'reg test' tasks. -----------------------*/\r
288 /*-----------------------------------------------------------*/\r
289 \r
290 /* Define the constants used to allocate the reg test task stacks.  Note that\r
291 that stack size is defined in words, not bytes. */\r
292 #define mainREG_TEST_STACK_SIZE_WORDS   128\r
293 #define mainREG_TEST_STACK_ALIGNMENT    ( mainREG_TEST_STACK_SIZE_WORDS * sizeof( portSTACK_TYPE ) )\r
294 \r
295 /* Declare the stacks that will be used by the reg test tasks.  The kernel will\r
296 automatically create an MPU region for the stack.  The stack alignment must \r
297 match its size, so if 128 words are reserved for the stack then it must be \r
298 aligned to ( 128 * 4 ) bytes. */\r
299 static portSTACK_TYPE xRegTest1Stack[ mainREG_TEST_STACK_SIZE_WORDS ] mainALIGN_TO( mainREG_TEST_STACK_ALIGNMENT );\r
300 static portSTACK_TYPE xRegTest2Stack[ mainREG_TEST_STACK_SIZE_WORDS ] mainALIGN_TO( mainREG_TEST_STACK_ALIGNMENT );\r
301 \r
302 /* Fill in a xTaskParameters structure per reg test task to define the tasks. */\r
303 static const xTaskParameters xRegTest1Parameters =\r
304 {\r
305         prvRegTest1Task,                                                /* pvTaskCode - the function that implements the task. */\r
306         ( signed char * ) "RegTest1",                   /* pcName                       */\r
307         mainREG_TEST_STACK_SIZE_WORDS,                  /* usStackDepth         */\r
308         ( void * ) 0x12345678,                                  /* pvParameters - this value is just to test that the parameter is being passed into the task correctly. */\r
309         tskIDLE_PRIORITY | portPRIVILEGE_BIT,   /* uxPriority - note that this task is created with privileges to demonstrate one method of passing a queue handle into the task. */\r
310         xRegTest1Stack,                                                 /* puxStackBuffer - the array to use as the task stack, as declared above. */\r
311         {                                                                               /* xRegions - this task does not use any non-stack data hence all members are zero. */\r
312                 /* Base address         Length          Parameters */\r
313         { 0x00,                         0x00,                   0x00 },\r
314         { 0x00,                         0x00,                   0x00 },\r
315         { 0x00,                         0x00,                   0x00 }\r
316         }\r
317 };\r
318 /*-----------------------------------------------------------*/\r
319 \r
320 static xTaskParameters xRegTest2Parameters =\r
321 {\r
322         prvRegTest2Task,                                /* pvTaskCode - the function that implements the task. */\r
323         ( signed char * ) "RegTest2",   /* pcName                       */\r
324         mainREG_TEST_STACK_SIZE_WORDS,  /* usStackDepth         */\r
325         ( void * ) NULL,                                /* pvParameters - this task uses the parameter to pass in a queue handle, but the queue is not created yet. */\r
326         tskIDLE_PRIORITY,                               /* uxPriority           */\r
327         xRegTest2Stack,                                 /* puxStackBuffer - the array to use as the task stack, as declared above. */\r
328         {                                                               /* xRegions - this task does not use any non-stack data hence all members are zero. */\r
329                 /* Base address         Length          Parameters */\r
330         { 0x00,                         0x00,                   0x00 },\r
331         { 0x00,                         0x00,                   0x00 },\r
332         { 0x00,                         0x00,                   0x00 }\r
333         }\r
334 };\r
335 \r
336 /*-----------------------------------------------------------*/\r
337 \r
338 int main( void )\r
339 {\r
340         prvSetupHardware();\r
341 \r
342         /* Create the queue used to pass "I'm alive" messages to the check task. */\r
343         xFileScopeCheckQueue = xQueueCreate( 1, sizeof( unsigned long ) );\r
344 \r
345         /* One check task uses the task parameter to receive the queue handle.\r
346         This allows the file scope variable to be accessed from within the task.\r
347         The pvParameters member of xRegTest2Parameters can only be set after the\r
348         queue has been created so is set here. */\r
349         xRegTest2Parameters.pvParameters = xFileScopeCheckQueue;\r
350 \r
351         /* Create the three test tasks.  Handles to the created tasks are not\r
352         required, hence the second parameter is NULL. */\r
353         xTaskCreateRestricted( &xRegTest1Parameters, NULL );\r
354     xTaskCreateRestricted( &xRegTest2Parameters, NULL );\r
355         xTaskCreateRestricted( &xCheckTaskParameters, NULL );\r
356 \r
357         /* Create the tasks that are created using the original xTaskCreate() API\r
358         function. */\r
359         xTaskCreate(    prvOldStyleUserModeTask,        /* The function that implements the task. */\r
360                                         ( signed char * ) "Task1",      /* Text name for the task. */\r
361                                         100,                                            /* Stack depth in words. */\r
362                                         NULL,                                           /* Task parameters. */\r
363                                         3,                                                      /* Priority and mode (user in this case). */\r
364                                         NULL                                            /* Handle. */\r
365                                 );\r
366 \r
367         xTaskCreate(    prvOldStylePrivilegedModeTask,  /* The function that implements the task. */\r
368                                         ( signed char * ) "Task2",              /* Text name for the task. */\r
369                                         100,                                                    /* Stack depth in words. */\r
370                                         NULL,                                                   /* Task parameters. */\r
371                                         ( 3 | portPRIVILEGE_BIT ),              /* Priority and mode. */\r
372                                         NULL                                                    /* Handle. */\r
373                                 );\r
374 \r
375         /* Start the scheduler. */\r
376         vTaskStartScheduler();\r
377 \r
378         /* Will only get here if there was insufficient memory to create the idle\r
379         task. */\r
380         for( ;; );\r
381         return 0;\r
382 }\r
383 /*-----------------------------------------------------------*/\r
384 \r
385 static void prvCheckTask( void *pvParameters )\r
386 {\r
387 /* This task is created in privileged mode so can access the file scope\r
388 queue variable.  Take a stack copy of this before the task is set into user\r
389 mode.  Once that task is in user mode the file scope queue variable will no\r
390 longer be accessible but the stack copy will. */\r
391 xQueueHandle xQueue = xFileScopeCheckQueue;\r
392 long lMessage;\r
393 unsigned long ulStillAliveCounts[ 2 ] = { 0 };\r
394 char *pcStatusMessage = "PASS\r\n";\r
395 unsigned char x = 5, y = 10;\r
396 \r
397         /* Just to remove compiler warning. */\r
398         ( void ) pvParameters;\r
399 \r
400         /* Demonstrate how the various memory regions can and can't be accessed. \r
401         The task privilege is set down to user mode within this function. */\r
402         prvTestMemoryRegions();\r
403 \r
404         /* Change the memory regions allocated to this task to those initially\r
405         set up for demonstration purposes to those actually required by the task. */\r
406         vTaskAllocateMPURegions( NULL, xAltRegions );\r
407 \r
408         /* This loop performs the main function of the task, which is blocking\r
409         on a message queue then processing each message as it arrives. */\r
410         for( ;; )\r
411         {\r
412                 /* Wait for the next message to arrive. */\r
413                 xQueueReceive( xQueue, &lMessage, portMAX_DELAY );\r
414                 \r
415                 switch( lMessage )\r
416                 {\r
417                         case mainREG_TEST_1_STILL_EXECUTING     :       \r
418                                         /* Message from task 1, so task 1 must still be executing. */\r
419                                         ( ulStillAliveCounts[ 0 ] )++;\r
420                                         break;\r
421 \r
422                         case mainREG_TEST_2_STILL_EXECUTING     :                                               \r
423                                         /* Message from task 2, so task 2 must still be executing. */\r
424                                         ( ulStillAliveCounts[ 1 ] )++;\r
425                                         break;\r
426 \r
427                         case mainPRINT_SYSTEM_STATUS            :       \r
428                                         /* Message from tick hook, time to print out the system\r
429                                         status.  If messages has stopped arriving from either reg\r
430                                         test task then the status must be set to fail. */\r
431                                         if( ( ulStillAliveCounts[ 0 ] == 0 ) || ( ulStillAliveCounts[ 1 ] == 0 )  )\r
432                                         {\r
433                                                 /* One or both of the test tasks are no longer sending \r
434                                                 'still alive' messages. */\r
435                                                 pcStatusMessage = "FAIL\r\n";\r
436                                         }\r
437 \r
438                                         /* Print a pass/fail message to the LCD - moving the\r
439                                         message each time to provide feedback that the output\r
440                                         is still being produced.  LCD_PrintString() accesses const\r
441                                         data stored in flash, which all tasks are at liberty to do, \r
442                                         and GPIO for which an MPU region has been set up for it. */\r
443                                         LCD_ClearScreen();\r
444                                         LCD_PrintString( x>>1, y>>1, pcStatusMessage, 6, COLOR_RED );\r
445                                         x += 7;\r
446                                         y += 9;\r
447 \r
448                                         /* Reset the count of 'still alive' messages. */\r
449                                         memset( ulStillAliveCounts, 0x00, sizeof( ulStillAliveCounts ) );\r
450                                         break;\r
451 \r
452                 default :\r
453                                         /* Something unexpected happened.  Delete this task so the \r
454                                         error is apparent (no output will be displayed). */\r
455                                         prvDeleteMe();\r
456                                         break;\r
457                 }\r
458         }\r
459 }\r
460 /*-----------------------------------------------------------*/\r
461 \r
462 static void prvTestMemoryRegions( void )\r
463 {\r
464 long l;\r
465 char cTemp;\r
466 \r
467         /* The check task (from which this function is called) is created in the \r
468         Privileged mode.  The privileged array can be both read from and written \r
469         to while this task is privileged. */\r
470         cPrivilegedOnlyAccessArray[ 0 ] = 'a';\r
471         if( cPrivilegedOnlyAccessArray[ 0 ] != 'a' )\r
472         {\r
473                 /* Something unexpected happened.  Delete this task so the error is\r
474                 apparent (no output will be displayed). */\r
475                 prvDeleteMe();\r
476         }\r
477 \r
478         /* Writing off the end of the RAM allocated to this task will *NOT* cause a\r
479         protection fault because the task is still executing in a privileged mode.  \r
480         Uncomment the following to test. */\r
481         /* cPrivilegedOnlyAccessArray[ mainPRIVILEGED_ONLY_ACCESS_ALIGN_SIZE ] = 'a'; */\r
482 \r
483         /* Now set the task into user mode. */\r
484         portSWITCH_TO_USER_MODE();\r
485          \r
486         /* Accessing the privileged only array will now cause a fault.  Uncomment \r
487         the following line to test. */    \r
488         /* cPrivilegedOnlyAccessArray[ 0 ] = 'a'; */\r
489 \r
490         /* The read/write array can still be successfully read and written. */\r
491         for( l = 0; l < mainREAD_WRITE_ALIGN_SIZE; l++ )\r
492         {\r
493                 cReadWriteArray[ l ] = 'a';\r
494                 if( cReadWriteArray[ l ] != 'a' )\r
495                 {\r
496                         /* Something unexpected happened.  Delete this task so the error is\r
497                         apparent (no output will be displayed). */\r
498                         prvDeleteMe();\r
499                 }\r
500         }\r
501 \r
502         /* But attempting to read or write off the end of the RAM allocated to this\r
503         task will cause a fault.  Uncomment either of the following two lines to \r
504         test. */\r
505         /* cReadWriteArray[ 0 ] = cReadWriteArray[ -1 ]; */\r
506         /* cReadWriteArray[ mainREAD_WRITE_ALIGN_SIZE ] = 0x00; */\r
507 \r
508         /* The read only array can be successfully read... */\r
509         for( l = 0; l < mainREAD_ONLY_ALIGN_SIZE; l++ )\r
510         {\r
511                 cTemp = cReadOnlyArray[ l ];\r
512         }\r
513 \r
514         /* ...but cannot be written.  Uncomment the following line to test. */\r
515         /* cReadOnlyArray[ 0 ] = 'a'; */\r
516 \r
517         /* Writing to the first and last locations in the stack array should not \r
518         cause a protection fault.  Note that doing this will cause the kernel to\r
519         detect a stack overflow if configCHECK_FOR_STACK_OVERFLOW is greater than \r
520         1. */\r
521     xCheckTaskStack[ 0 ] = 0;\r
522     xCheckTaskStack[ mainCHECK_TASK_STACK_SIZE_WORDS - 1 ] = 0;\r
523 \r
524         /* Writing off either end of the stack array should cause a protection \r
525         fault, uncomment either of the following two lines to test. */\r
526         /* xCheckTaskStack[ -1 ] = 0; */\r
527     /* xCheckTaskStack[ mainCHECK_TASK_STACK_SIZE_WORDS ] = 0; */\r
528 }\r
529 /*-----------------------------------------------------------*/\r
530 \r
531 static void prvRegTest1Task( void *pvParameters )\r
532 {\r
533 /* This task is created in privileged mode so can access the file scope\r
534 queue variable.  Take a stack copy of this before the task is set into user\r
535 mode.  Once this task is in user mode the file scope queue variable will no\r
536 longer be accessible but the stack copy will. */\r
537 xQueueHandle xQueue = xFileScopeCheckQueue;\r
538 \r
539         /* Now the queue handle has been obtained the task can switch to user \r
540         mode.  This is just one method of passing a handle into a protected\r
541         task, the other reg test task uses the task parameter instead. */\r
542     portSWITCH_TO_USER_MODE();\r
543 \r
544         /* First check that the parameter value is as expected. */\r
545         if( pvParameters != ( void * ) 0x12345678 )\r
546         {\r
547                 /* Error detected.  Delete the task so it stops communicating with\r
548                 the check task. */\r
549                 prvDeleteMe();\r
550         }\r
551 \r
552 \r
553         for( ;; )\r
554         {               \r
555                 /* This task tests the kernel context switch mechanism by reading and\r
556                 writing directly to registers - which requires the test to be written\r
557                 in assembly code. */\r
558                 __asm volatile \r
559                 (       \r
560                         "               MOV     R4, #104                        \n" /* Set registers to a known value.  R0 to R1 are done in the loop below. */\r
561                         "               MOV     R5, #105                        \n"\r
562                         "               MOV     R6, #106                        \n"\r
563                         "               MOV     R8, #108                        \n"\r
564                         "               MOV     R9, #109                        \n"\r
565                         "               MOV     R10, #110                       \n"\r
566                         "               MOV     R11, #111                       \n"\r
567                         "reg1loop:                                              \n"\r
568                         "               MOV     R0, #100                        \n" /* Set the scratch registers to known values - done inside the loop as they get clobbered. */\r
569                         "               MOV     R1, #101                        \n"\r
570                         "               MOV     R2, #102                        \n"\r
571                         "               MOV R3, #103                    \n"\r
572                         "               MOV     R12, #112                       \n"\r
573                         "               SVC #1                                  \n" /* Yield just to increase test coverage. */\r
574                         "               CMP     R0, #100                        \n" /* Check all the registers still contain their expected values. */\r
575                         "               BNE     prvDeleteMe                     \n" /* Value was not as expected, delete the task so it stops communicating with the check task. */\r
576                         "               CMP     R1, #101                        \n"\r
577                         "               BNE     prvDeleteMe                     \n"\r
578                         "               CMP     R2, #102                        \n"\r
579                         "               BNE     prvDeleteMe                     \n"\r
580                         "               CMP R3, #103                    \n"\r
581                         "               BNE     prvDeleteMe                     \n"\r
582                         "               CMP     R4, #104                        \n" \r
583                         "               BNE     prvDeleteMe                     \n" \r
584                         "               CMP     R5, #105                        \n"\r
585                         "               BNE     prvDeleteMe                     \n"\r
586                         "               CMP     R6, #106                        \n"\r
587                         "               BNE     prvDeleteMe                     \n"\r
588                         "               CMP     R8, #108                        \n"\r
589                         "               BNE     prvDeleteMe                     \n"\r
590                         "               CMP     R9, #109                        \n"\r
591                         "               BNE     prvDeleteMe                     \n"\r
592                         "               CMP     R10, #110                       \n"\r
593                         "               BNE     prvDeleteMe                     \n"\r
594                         "               CMP     R11, #111                       \n"\r
595                         "               BNE     prvDeleteMe                     \n"\r
596                         "               CMP     R12, #112                       \n"\r
597                         "               BNE     prvDeleteMe                     \n"\r
598                         :::"r0", "r1", "r2", "r3", "r4", "r5", "r6", "r8", "r9", "r10", "r11", "r12"\r
599                 );\r
600 \r
601                 /* Send mainREG_TEST_1_STILL_EXECUTING to the check task to indicate that this \r
602                 task is still functioning. */\r
603                 prvSendImAlive( xQueue, mainREG_TEST_1_STILL_EXECUTING );\r
604 \r
605                 /* Go back to check all the register values again. */\r
606                 __asm volatile( "               B reg1loop      " );\r
607         }\r
608 }\r
609 /*-----------------------------------------------------------*/\r
610 \r
611 static void prvRegTest2Task( void *pvParameters )\r
612 {\r
613 /* The queue handle is passed in as the task parameter.  This is one method of\r
614 passing data into a protected task, the other reg test task uses a different \r
615 method. */\r
616 xQueueHandle xQueue = ( xQueueHandle ) pvParameters;\r
617 \r
618         for( ;; )\r
619         {\r
620                 /* This task tests the kernel context switch mechanism by reading and\r
621                 writing directly to registers - which requires the test to be written\r
622                 in assembly code. */\r
623                 __asm volatile \r
624                 (       \r
625                         "               MOV     R4, #4                          \n" /* Set registers to a known value.  R0 to R1 are done in the loop below. */\r
626                         "               MOV     R5, #5                          \n"\r
627                         "               MOV     R6, #6                          \n"\r
628                         "               MOV     R8, #8                          \n" /* Frame pointer is omitted as it must not be changed. */\r
629                         "               MOV     R9, #9                          \n"\r
630                         "               MOV     R10, 10                         \n"\r
631                         "               MOV     R11, #11                        \n"                                             \r
632                         "reg2loop:                                              \n"\r
633                         "               MOV     R0, #13                         \n" /* Set the scratch registers to known values - done inside the loop as they get clobbered. */\r
634                         "               MOV     R1, #1                          \n"\r
635                         "               MOV     R2, #2                          \n"\r
636                         "               MOV R3, #3                              \n"\r
637                         "               MOV     R12, #12                        \n"\r
638                         "               CMP     R0, #13                         \n" /* Check all the registers still contain their expected values. */\r
639                         "               BNE     prvDeleteMe                     \n" /* Value was not as expected, delete the task so it stops communicating with the check task */\r
640                         "               CMP     R1, #1                          \n"\r
641                         "               BNE     prvDeleteMe                     \n"\r
642                         "               CMP     R2, #2                          \n"\r
643                         "               BNE     prvDeleteMe                     \n"\r
644                         "               CMP R3, #3                              \n"\r
645                         "               BNE     prvDeleteMe                     \n"\r
646                         "               CMP     R4, #4                          \n"\r
647                         "               BNE     prvDeleteMe                     \n"\r
648                         "               CMP     R5, #5                          \n"\r
649                         "               BNE     prvDeleteMe                     \n"\r
650                         "               CMP     R6, #6                          \n"\r
651                         "               BNE     prvDeleteMe                     \n"\r
652                         "               CMP     R8, #8                          \n"\r
653                         "               BNE     prvDeleteMe                     \n"\r
654                         "               CMP     R9, #9                          \n"\r
655                         "               BNE     prvDeleteMe                     \n"\r
656                         "               CMP     R10, #10                        \n"\r
657                         "               BNE     prvDeleteMe                     \n"\r
658                         "               CMP     R11, #11                        \n"\r
659                         "               BNE     prvDeleteMe                     \n"\r
660                         "               CMP     R12, #12                        \n"\r
661                         "               BNE     prvDeleteMe                     \n"\r
662             :::"r0", "r1", "r2", "r3", "r4", "r5", "r6", "r8", "r9", "r10", "r11", "r12"\r
663                 );\r
664 \r
665                 /* Send mainREG_TEST_2_STILL_EXECUTING to the check task to indicate that this \r
666                 task is still functioning. */\r
667                 prvSendImAlive( xQueue, mainREG_TEST_2_STILL_EXECUTING );\r
668 \r
669                 /* Go back to check all the register values again. */\r
670                 __asm volatile( "               B reg2loop      " );\r
671         }\r
672 }\r
673 /*-----------------------------------------------------------*/\r
674 \r
675 void vApplicationIdleHook( void )\r
676 {\r
677 extern unsigned long __SRAM_segment_end__[];\r
678 extern unsigned long __privileged_data_start__[];\r
679 extern unsigned long __privileged_data_end__[];\r
680 extern unsigned long __FLASH_segment_start__[];\r
681 extern unsigned long __FLASH_segment_end__[];\r
682 volatile unsigned long *pul;\r
683 volatile unsigned long ulReadData;\r
684 \r
685         /* The idle task, and therefore this function, run in Supervisor mode and\r
686         can therefore access all memory.  Try reading from corners of flash and\r
687         RAM to ensure a memory fault does not occur. \r
688         \r
689         Start with the edges of the privileged data area. */\r
690         pul = __privileged_data_start__;\r
691         ulReadData = *pul;\r
692         pul = __privileged_data_end__ - 1;\r
693         ulReadData = *pul;\r
694 \r
695         /* Next the standard SRAM area. */\r
696         pul = __SRAM_segment_end__ - 1;\r
697         ulReadData = *pul;\r
698 \r
699         /* And the standard Flash area - the start of which is marked for\r
700         privileged access only. */\r
701         pul = __FLASH_segment_start__;\r
702         ulReadData = *pul;\r
703         pul = __FLASH_segment_end__ - 1;\r
704         ulReadData = *pul;\r
705 \r
706         /* Reading off the end of Flash or SRAM space should cause a fault.  \r
707         Uncomment one of the following two pairs of lines to test. */\r
708         \r
709         /* pul = __FLASH_segment_end__ + 4;\r
710         ulReadData = *pul; */\r
711 \r
712         /* pul = __SRAM_segment_end__ + 1;\r
713         ulReadData = *pul; */\r
714 }\r
715 /*-----------------------------------------------------------*/\r
716 \r
717 static void prvOldStyleUserModeTask( void *pvParameters )\r
718 {\r
719 extern unsigned long __privileged_data_start__[];\r
720 extern unsigned long __privileged_data_end__[];\r
721 extern unsigned long __SRAM_segment_end__[];\r
722 extern unsigned long __privileged_functions_end__[];\r
723 extern unsigned long __FLASH_segment_start__[];\r
724 extern unsigned long __FLASH_segment_end__[];\r
725 const volatile unsigned long *pulStandardPeripheralRegister = ( volatile unsigned long * ) 0x400FC0C4; /* PCONP */\r
726 volatile unsigned long *pul;\r
727 volatile unsigned long ulReadData;\r
728 \r
729 /* The following lines are commented out to prevent the unused variable \r
730 compiler warnings when the tests that use the variable are also commented out.\r
731 extern unsigned long __privileged_functions_start__[];\r
732 const volatile unsigned long *pulSystemPeripheralRegister = ( volatile unsigned long * ) 0xe000e014; */\r
733 \r
734         ( void ) pvParameters;\r
735 \r
736         /* This task is created in User mode using the original xTaskCreate() API\r
737         function.  It should have access to all Flash and RAM except that marked\r
738         as Privileged access only.  Reading from the start and end of the non-\r
739         privileged RAM should not cause a problem (the privileged RAM is the first\r
740         block at the bottom of the RAM memory). */\r
741         pul = __privileged_data_end__ + 1;\r
742         ulReadData = *pul;\r
743         pul = __SRAM_segment_end__ - 1;\r
744         ulReadData = *pul;\r
745 \r
746         /* Likewise reading from the start and end of the non-privileged Flash\r
747         should not be a problem (the privileged Flash is the first block at the\r
748         bottom of the Flash memory). */\r
749         pul = __privileged_functions_end__ + 1;\r
750         ulReadData = *pul;\r
751         pul = __FLASH_segment_end__ - 1;\r
752         ulReadData = *pul;\r
753 \r
754         /* Standard peripherals are accessible. */\r
755         ulReadData = *pulStandardPeripheralRegister;\r
756 \r
757         /* System peripherals are not accessible.  Uncomment the following line\r
758         to test.  Also uncomment the declaration of pulSystemPeripheralRegister\r
759         at the top of this function. */\r
760     /* ulReadData = *pulSystemPeripheralRegister; */\r
761 \r
762         /* Reading from anywhere inside the privileged Flash or RAM should cause a\r
763         fault.  This can be tested by uncommenting any of the following pairs of\r
764         lines.  Also uncomment the declaration of __privileged_functions_start__\r
765         at the top of this function. */\r
766 \r
767         /* pul = __privileged_functions_start__;\r
768         ulReadData = *pul; */\r
769         \r
770         /* pul = __privileged_functions_end__ - 1;\r
771         ulReadData = *pul; */\r
772 \r
773         /* pul = __privileged_data_start__;\r
774         ulReadData = *pul; */ \r
775         \r
776         /* pul = __privileged_data_end__ - 1;\r
777         ulReadData = *pul; */\r
778 \r
779         /* Must not just run off the end of a task function, so delete this task. \r
780         Note that because this task was created using xTaskCreate() the stack was\r
781         allocated dynamically and I have not included any code to free it again. */\r
782         vTaskDelete( NULL );\r
783 }\r
784 /*-----------------------------------------------------------*/\r
785 \r
786 static void prvOldStylePrivilegedModeTask( void *pvParameters )\r
787 {\r
788 extern unsigned long __privileged_data_start__[];\r
789 extern unsigned long __privileged_data_end__[];\r
790 extern unsigned long __SRAM_segment_end__[];\r
791 extern unsigned long __privileged_functions_start__[];\r
792 extern unsigned long __privileged_functions_end__[];\r
793 extern unsigned long __FLASH_segment_start__[];\r
794 extern unsigned long __FLASH_segment_end__[];\r
795 volatile unsigned long *pul;\r
796 volatile unsigned long ulReadData;\r
797 const volatile unsigned long *pulSystemPeripheralRegister = ( volatile unsigned long * ) 0xe000e014; /* Systick */\r
798 const volatile unsigned long *pulStandardPeripheralRegister = ( volatile unsigned long * ) 0x400FC0C4; /* PCONP */\r
799 \r
800         ( void ) pvParameters;\r
801 \r
802         /* This task is created in Privileged mode using the original xTaskCreate() \r
803         API     function.  It should have access to all Flash and RAM including that \r
804         marked as Privileged access only.  So reading from the start and end of the \r
805         non-privileged RAM should not cause a problem (the privileged RAM is the \r
806         first block at the bottom of the RAM memory). */\r
807         pul = __privileged_data_end__ + 1;\r
808         ulReadData = *pul;\r
809         pul = __SRAM_segment_end__ - 1;\r
810         ulReadData = *pul;\r
811 \r
812         /* Likewise reading from the start and end of the non-privileged Flash\r
813         should not be a problem (the privileged Flash is the first block at the\r
814         bottom of the Flash memory). */\r
815         pul = __privileged_functions_end__ + 1;\r
816         ulReadData = *pul;\r
817         pul = __FLASH_segment_end__ - 1;\r
818         ulReadData = *pul;\r
819 \r
820         /* Reading from anywhere inside the privileged Flash or RAM should also\r
821         not be a problem. */\r
822         pul = __privileged_functions_start__;\r
823         ulReadData = *pul;\r
824         pul = __privileged_functions_end__ - 1;\r
825         ulReadData = *pul;\r
826         pul = __privileged_data_start__;\r
827         ulReadData = *pul;      \r
828         pul = __privileged_data_end__ - 1;\r
829         ulReadData = *pul;\r
830 \r
831         /* Finally, accessing both System and normal peripherals should both be\r
832         possible. */\r
833     ulReadData = *pulSystemPeripheralRegister;\r
834         ulReadData = *pulStandardPeripheralRegister;\r
835 \r
836         /* Must not just run off the end of a task function, so delete this task. \r
837         Note that because this task was created using xTaskCreate() the stack was\r
838         allocated dynamically and I have not included any code to free it again. */\r
839         vTaskDelete( NULL );\r
840 }\r
841 /*-----------------------------------------------------------*/\r
842 \r
843 static void prvDeleteMe( void )\r
844 {\r
845         vTaskDelete( NULL );\r
846 }\r
847 /*-----------------------------------------------------------*/\r
848 \r
849 static void prvSendImAlive( xQueueHandle xHandle, unsigned long ulTaskNumber )\r
850 {\r
851         if( xHandle != NULL )\r
852         {\r
853                 xQueueSend( xHandle, &ulTaskNumber, mainDONT_BLOCK );\r
854         }\r
855 }\r
856 /*-----------------------------------------------------------*/\r
857 \r
858 void prvSetupHardware( void )\r
859 {\r
860         /* Disable peripherals power. */\r
861         SC->PCONP = 0;\r
862 \r
863         /* Enable GPIO power. */\r
864         SC->PCONP = PCONP_PCGPIO;\r
865 \r
866         /* Disable TPIU. */\r
867         PINCON->PINSEL10 = 0;\r
868 \r
869         if ( SC->PLL0STAT & ( 1 << 25 ) )\r
870         {\r
871                 /* Enable PLL, disconnected. */\r
872                 SC->PLL0CON = 1;                        \r
873                 SC->PLL0FEED = PLLFEED_FEED1;\r
874                 SC->PLL0FEED = PLLFEED_FEED2;\r
875         }\r
876         \r
877         /* Disable PLL, disconnected. */\r
878         SC->PLL0CON = 0;                                \r
879         SC->PLL0FEED = PLLFEED_FEED1;\r
880         SC->PLL0FEED = PLLFEED_FEED2;\r
881             \r
882         /* Enable main OSC. */\r
883         SC->SCS |= 0x20;                        \r
884         while( !( SC->SCS & 0x40 ) );\r
885         \r
886         /* select main OSC, 12MHz, as the PLL clock source. */\r
887         SC->CLKSRCSEL = 0x1;            \r
888         \r
889         SC->PLL0CFG = 0x20031;\r
890         SC->PLL0FEED = PLLFEED_FEED1;\r
891         SC->PLL0FEED = PLLFEED_FEED2;\r
892               \r
893         /* Enable PLL, disconnected. */\r
894         SC->PLL0CON = 1;                                \r
895         SC->PLL0FEED = PLLFEED_FEED1;\r
896         SC->PLL0FEED = PLLFEED_FEED2;\r
897         \r
898         /* Set clock divider. */\r
899         SC->CCLKCFG = 0x03;\r
900         \r
901         /* Configure flash accelerator. */\r
902         SC->FLASHCFG = 0x403a;\r
903         \r
904         /* Check lock bit status. */\r
905         while( ( ( SC->PLL0STAT & ( 1 << 26 ) ) == 0 ) );       \r
906             \r
907         /* Enable and connect. */\r
908         SC->PLL0CON = 3;                                \r
909         SC->PLL0FEED = PLLFEED_FEED1;\r
910         SC->PLL0FEED = PLLFEED_FEED2;\r
911         while( ( ( SC->PLL0STAT & ( 1 << 25 ) ) == 0 ) );       \r
912 \r
913         \r
914         \r
915         \r
916         /* Configure the clock for the USB. */\r
917           \r
918         if( SC->PLL1STAT & ( 1 << 9 ) )\r
919         {\r
920                 /* Enable PLL, disconnected. */\r
921                 SC->PLL1CON = 1;                        \r
922                 SC->PLL1FEED = PLLFEED_FEED1;\r
923                 SC->PLL1FEED = PLLFEED_FEED2;\r
924         }\r
925         \r
926         /* Disable PLL, disconnected. */\r
927         SC->PLL1CON = 0;                                \r
928         SC->PLL1FEED = PLLFEED_FEED1;\r
929         SC->PLL1FEED = PLLFEED_FEED2;\r
930         \r
931         SC->PLL1CFG = 0x23;\r
932         SC->PLL1FEED = PLLFEED_FEED1;\r
933         SC->PLL1FEED = PLLFEED_FEED2;\r
934               \r
935         /* Enable PLL, disconnected. */\r
936         SC->PLL1CON = 1;                                \r
937         SC->PLL1FEED = PLLFEED_FEED1;\r
938         SC->PLL1FEED = PLLFEED_FEED2;\r
939         while( ( ( SC->PLL1STAT & ( 1 << 10 ) ) == 0 ) );\r
940         \r
941         /* Enable and connect. */\r
942         SC->PLL1CON = 3;                                \r
943         SC->PLL1FEED = PLLFEED_FEED1;\r
944         SC->PLL1FEED = PLLFEED_FEED2;\r
945         while( ( ( SC->PLL1STAT & ( 1 << 9 ) ) == 0 ) );\r
946 \r
947         /*  Setup the peripheral bus to be the same as the PLL output (64 MHz). */\r
948         SC->PCLKSEL0 = 0x05555555;\r
949         \r
950         /* Prepare the LCD. */\r
951         LCDdriver_initialisation();\r
952         LCD_PrintString( 5, 10, "FreeRTOS.org", 14, COLOR_GREEN);\r
953 }\r
954 /*-----------------------------------------------------------*/\r
955 \r
956 void vApplicationTickHook( void )\r
957 {\r
958 static unsigned long ulCallCount;\r
959 const unsigned long ulCallsBetweenSends = 5000 / portTICK_RATE_MS;\r
960 const unsigned long ulMessage = mainPRINT_SYSTEM_STATUS;\r
961 portBASE_TYPE xDummy;\r
962 \r
963         /* If configUSE_TICK_HOOK is set to 1 then this function will get called\r
964         from each RTOS tick.  It is called from the tick interrupt and therefore\r
965         will be executing in the privileged state. */\r
966 \r
967         ulCallCount++;\r
968 \r
969         /* Is it time to print out the pass/fail message again? */\r
970         if( ulCallCount >= ulCallsBetweenSends )\r
971         {\r
972                 ulCallCount = 0;\r
973 \r
974                 /* Send a message to the check task to command it to check that all\r
975                 the tasks are still running then print out the status. \r
976                 \r
977                 This is running in an ISR so has to use the "FromISR" version of\r
978                 xQueueSend().  Because it is in an ISR it is running with privileges\r
979                 so can access xFileScopeCheckQueue directly. */\r
980                 xQueueSendFromISR( xFileScopeCheckQueue, &ulMessage, &xDummy );\r
981         }\r
982 }\r
983 /*-----------------------------------------------------------*/\r
984 \r
985 void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )\r
986 {\r
987         /* If configCHECK_FOR_STACK_OVERFLOW is set to either 1 or 2 then this \r
988         function will automatically get called if a task overflows its stack. */\r
989         ( void ) pxTask;\r
990         ( void ) pcTaskName;\r
991         for( ;; );\r
992 }\r
993 /*-----------------------------------------------------------*/\r
994 \r
995 void vApplicationMallocFailedHook( void )\r
996 {\r
997         /* If configUSE_MALLOC_FAILED_HOOK is set to 1 then this function will\r
998         be called automatically if a call to pvPortMalloc() fails.  pvPortMalloc()\r
999         is called automatically when a task, queue or semaphore is created. */\r
1000         for( ;; );\r
1001 }\r
1002 /*-----------------------------------------------------------*/\r
1003 \r
1004 \r