]> git.sur5r.net Git - freertos/blob - FreeRTOS/Demo/RX600_RX62N-RSK_Renesas/RTOSDemo/main-full.c
0db41d1f2409d373324a2089c87955abe6977261
[freertos] / FreeRTOS / Demo / RX600_RX62N-RSK_Renesas / RTOSDemo / 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  * This project includes a lot of tasks and tests and is therefore complex.\r
30  * If you would prefer a much simpler project to get started with then select\r
31  * the 'Blinky' build configuration within the HEW IDE.\r
32  * ****************************************************************************\r
33  *\r
34  * Creates all the demo application tasks, then starts the scheduler.  The web\r
35  * documentation provides more details of the standard demo application tasks,\r
36  * which provide no particular functionality but do provide a good example of\r
37  * how to use the FreeRTOS API.  The tasks defined in flop.c are included in the\r
38  * set of standard demo tasks to ensure the floating point unit gets some\r
39  * exercise.\r
40  *\r
41  * In addition to the standard demo tasks, the following tasks and tests are\r
42  * defined and/or created within this file:\r
43  *\r
44  * Webserver ("uIP") task - This serves a number of dynamically generated WEB\r
45  * pages to a standard WEB browser.  The IP and MAC addresses are configured by\r
46  * constants defined at the bottom of FreeRTOSConfig.h.  Use either a standard\r
47  * Ethernet cable to connect through a hug, or a cross over (point to point)\r
48  * cable to connect directly.  Ensure the IP address used is compatible with the\r
49  * IP address of the machine running the browser - the easiest way to achieve\r
50  * this is to ensure the first three octets of the IP addresses are the same.\r
51  *\r
52  * "Reg test" tasks - These fill the registers with known values, then check\r
53  * that each register still contains its expected value.  Each task uses\r
54  * different values.  The tasks run with very low priority so get preempted\r
55  * very frequently.  A check variable is incremented on each iteration of the\r
56  * test loop.  A register containing an unexpected value is indicative of an\r
57  * error in the context switching mechanism and will result in a branch to a\r
58  * null loop - which in turn will prevent the check variable from incrementing\r
59  * any further and allow the check task (described below) to determine that an\r
60  * error has occurred.  The nature of the reg test tasks necessitates that they\r
61  * are written in assembly code.\r
62  *\r
63  * "Check" task - This only executes every five seconds but has a high priority\r
64  * to ensure it gets processor time.  Its main function is to check that all the\r
65  * standard demo tasks are still operational.  While no errors have been\r
66  * discovered the check task will toggle LED 5 every 5 seconds - the toggle\r
67  * rate increasing to 200ms being a visual indication that at least one task has\r
68  * reported unexpected behaviour.\r
69  *\r
70  * "High frequency timer test" - A high frequency periodic interrupt is\r
71  * generated using a timer - the interrupt is assigned a priority above\r
72  * configMAX_SYSCALL_INTERRUPT_PRIORITY so should not be effected by anything\r
73  * the kernel is doing.  The frequency and priority of the interrupt, in\r
74  * combination with other standard tests executed in this demo, should result\r
75  * in interrupts nesting at least 3 and probably 4 deep.  This test is only\r
76  * included in build configurations that have the optimiser switched on.  In\r
77  * optimised builds the count of high frequency ticks is used as the time base\r
78  * for the run time stats.\r
79  *\r
80  * *NOTE 1* If LED5 is toggling every 5 seconds then all the demo application\r
81  * tasks are executing as expected and no errors have been reported in any\r
82  * tasks.  The toggle rate increasing to 200ms indicates that at least one task\r
83  * has reported unexpected behaviour.\r
84  *\r
85  * *NOTE 2* vApplicationSetupTimerInterrupt() is called by the kernel to let\r
86  * the application set up a timer to generate the tick interrupt.  In this\r
87  * example a compare match timer is used for this purpose.\r
88  *\r
89  * *NOTE 3* The CPU must be in Supervisor mode when the scheduler is started.\r
90  * The PowerON_Reset_PC() supplied in resetprg.c with this demo has\r
91  * Change_PSW_PM_to_UserMode() commented out to ensure this is the case.\r
92  *\r
93  * *NOTE 4* The IntQueue common demo tasks test interrupt nesting and make use\r
94  * of all the 8bit timers (as two cascaded 16bit units).\r
95 */\r
96 \r
97 /* Hardware specific includes. */\r
98 #include "iodefine.h"\r
99 \r
100 /* Kernel includes. */\r
101 #include "FreeRTOS.h"\r
102 #include "task.h"\r
103 \r
104 /* Standard demo includes. */\r
105 #include "partest.h"\r
106 #include "flash.h"\r
107 #include "IntQueue.h"\r
108 #include "BlockQ.h"\r
109 #include "death.h"\r
110 #include "integer.h"\r
111 #include "blocktim.h"\r
112 #include "semtest.h"\r
113 #include "PollQ.h"\r
114 #include "GenQTest.h"\r
115 #include "QPeek.h"\r
116 #include "recmutex.h"\r
117 #include "flop.h"\r
118 \r
119 /* Values that are passed into the reg test tasks using the task parameter.  The\r
120 tasks check that the values are passed in correctly. */\r
121 #define mainREG_TEST_1_PARAMETER        ( 0x12121212UL )\r
122 #define mainREG_TEST_2_PARAMETER        ( 0x12345678UL )\r
123 \r
124 /* Priorities at which the tasks are created. */\r
125 #define mainCHECK_TASK_PRIORITY         ( configMAX_PRIORITIES - 1 )\r
126 #define mainQUEUE_POLL_PRIORITY         ( tskIDLE_PRIORITY + 1 )\r
127 #define mainSEM_TEST_PRIORITY           ( tskIDLE_PRIORITY + 1 )\r
128 #define mainBLOCK_Q_PRIORITY            ( tskIDLE_PRIORITY + 2 )\r
129 #define mainCREATOR_TASK_PRIORITY   ( tskIDLE_PRIORITY + 3 )\r
130 #define mainFLASH_TASK_PRIORITY         ( tskIDLE_PRIORITY + 1 )\r
131 #define mainuIP_TASK_PRIORITY           ( tskIDLE_PRIORITY + 2 )\r
132 #define mainINTEGER_TASK_PRIORITY   ( tskIDLE_PRIORITY )\r
133 #define mainGEN_QUEUE_TASK_PRIORITY     ( tskIDLE_PRIORITY )\r
134 #define mainFLOP_TASK_PRIORITY          ( tskIDLE_PRIORITY )\r
135 \r
136 /* The WEB server uses string handling functions, which in turn use a bit more\r
137 stack than most of the other tasks. */\r
138 #define mainuIP_STACK_SIZE                      ( configMINIMAL_STACK_SIZE * 3 )\r
139 \r
140 /* The LED toggled by the check task. */\r
141 #define mainCHECK_LED                           ( 5 )\r
142 \r
143 /* The rate at which mainCHECK_LED will toggle when all the tasks are running\r
144 without error.  Controlled by the check task as described at the top of this\r
145 file. */\r
146 #define mainNO_ERROR_CYCLE_TIME         ( 5000 / portTICK_PERIOD_MS )\r
147 \r
148 /* The rate at which mainCHECK_LED will toggle when an error has been reported\r
149 by at least one task.  Controlled by the check task as described at the top of\r
150 this file. */\r
151 #define mainERROR_CYCLE_TIME            ( 200 / portTICK_PERIOD_MS )\r
152 \r
153 /*\r
154  * vApplicationMallocFailedHook() will only be called if\r
155  * configUSE_MALLOC_FAILED_HOOK is set to 1 in FreeRTOSConfig.h.  It is a hook\r
156  * function that will execute if a call to pvPortMalloc() fails.\r
157  * pvPortMalloc() is called internally by the kernel whenever a task, queue or\r
158  * semaphore is created.  It is also called by various parts of the demo\r
159  * application.\r
160  */\r
161 void vApplicationMallocFailedHook( void );\r
162 \r
163 /*\r
164  * vApplicationIdleHook() will only be called if configUSE_IDLE_HOOK is set to 1\r
165  * in FreeRTOSConfig.h.  It is a hook function that is called on each iteration\r
166  * of the idle task.  It is essential that code added to this hook function\r
167  * never attempts to block in any way (for example, call xQueueReceive() with\r
168  * a block time specified).  If the application makes use of the vTaskDelete()\r
169  * API function (as this demo application does) then it is also important that\r
170  * vApplicationIdleHook() is permitted to return to its calling function because\r
171  * it is the responsibility of the idle task to clean up memory allocated by the\r
172  * kernel to any task that has since been deleted.\r
173  */\r
174 void vApplicationIdleHook( void );\r
175 \r
176 /*\r
177  * vApplicationStackOverflowHook() will only be called if\r
178  * configCHECK_FOR_STACK_OVERFLOW is set to a non-zero value.  The handle and\r
179  * name of the offending task should be passed in the function parameters, but\r
180  * it is possible that the stack overflow will have corrupted these - in which\r
181  * case pxCurrentTCB can be inspected to find the same information.\r
182  */\r
183 void vApplicationStackOverflowHook( TaskHandle_t pxTask, char *pcTaskName );\r
184 \r
185 /*\r
186  * The reg test tasks as described at the top of this file.\r
187  */\r
188 static void prvRegTest1Task( void *pvParameters );\r
189 static void prvRegTest2Task( void *pvParameters );\r
190 \r
191 /*\r
192  * The actual implementation of the reg test functionality, which, because of\r
193  * the direct register access, have to be in assembly.\r
194  */\r
195 static void prvRegTest1Implementation( void );\r
196 static void prvRegTest2Implementation( void );\r
197 \r
198 /*\r
199  * The check task as described at the top of this file.\r
200  */\r
201 static void prvCheckTask( void *pvParameters );\r
202 \r
203 /*\r
204  * Contains the implementation of the WEB server.\r
205  */\r
206 extern void vuIP_Task( void *pvParameters );\r
207 \r
208 /*-----------------------------------------------------------*/\r
209 \r
210 /* Variables that are incremented on each iteration of the reg test tasks -\r
211 provided the tasks have not reported any errors.  The check task inspects these\r
212 variables to ensure they are still incrementing as expected.  If a variable\r
213 stops incrementing then it is likely that its associate task has stalled. */\r
214 unsigned long ulRegTest1CycleCount = 0UL, ulRegTest2CycleCount = 0UL;\r
215 \r
216 /* The status message that is displayed at the bottom of the "task stats" web\r
217 page, which is served by the uIP task.  This will report any errors picked up\r
218 by the reg test task. */\r
219 const char *pcStatusMessage = "All tasks executing without error.";\r
220 \r
221 /*-----------------------------------------------------------*/\r
222 \r
223 void main(void)\r
224 {\r
225 extern void HardwareSetup( void );\r
226 \r
227         /* Renesas provided CPU configuration routine.  The clocks are configured in\r
228         here. */\r
229         HardwareSetup();\r
230 \r
231         /* Turn all LEDs off. */\r
232         vParTestInitialise();\r
233 \r
234         /* Start the reg test tasks which test the context switching mechanism. */\r
235         xTaskCreate( prvRegTest1Task, "RegTst1", configMINIMAL_STACK_SIZE, ( void * ) mainREG_TEST_1_PARAMETER, tskIDLE_PRIORITY, NULL );\r
236         xTaskCreate( prvRegTest2Task, "RegTst2", configMINIMAL_STACK_SIZE, ( void * ) mainREG_TEST_2_PARAMETER, tskIDLE_PRIORITY, NULL );\r
237 \r
238         /* The web server task. */\r
239         xTaskCreate( vuIP_Task, "uIP", mainuIP_STACK_SIZE, NULL, mainuIP_TASK_PRIORITY, NULL );\r
240 \r
241         /* Start the check task as described at the top of this file. */\r
242         xTaskCreate( prvCheckTask, "Check", configMINIMAL_STACK_SIZE * 3, NULL, mainCHECK_TASK_PRIORITY, NULL );\r
243 \r
244         /* Create the standard demo tasks. */\r
245         vStartBlockingQueueTasks( mainBLOCK_Q_PRIORITY );\r
246         vCreateBlockTimeTasks();\r
247         vStartSemaphoreTasks( mainSEM_TEST_PRIORITY );\r
248         vStartPolledQueueTasks( mainQUEUE_POLL_PRIORITY );\r
249         vStartIntegerMathTasks( mainINTEGER_TASK_PRIORITY );\r
250         vStartGenericQueueTasks( mainGEN_QUEUE_TASK_PRIORITY );\r
251         vStartLEDFlashTasks( mainFLASH_TASK_PRIORITY );\r
252         vStartQueuePeekTasks();\r
253         vStartRecursiveMutexTasks();\r
254         vStartInterruptQueueTasks();\r
255         vStartMathTasks( mainFLOP_TASK_PRIORITY );\r
256 \r
257         /* The suicide tasks must be created last as they need to know how many\r
258         tasks were running prior to their creation in order to ascertain whether\r
259         or not the correct/expected number of tasks are running at any given time. */\r
260         vCreateSuicidalTasks( mainCREATOR_TASK_PRIORITY );\r
261 \r
262         /* Start the tasks running. */\r
263         vTaskStartScheduler();\r
264 \r
265         /* If all is well we will never reach here as the scheduler will now be\r
266         running.  If we do reach here then it is likely that there was insufficient\r
267         heap available for the idle task to be created. */\r
268         for( ;; );\r
269 }\r
270 /*-----------------------------------------------------------*/\r
271 \r
272 static void prvCheckTask( void *pvParameters )\r
273 {\r
274 static volatile unsigned long ulLastRegTest1CycleCount = 0UL, ulLastRegTest2CycleCount = 0UL;\r
275 TickType_t xNextWakeTime, xCycleFrequency = mainNO_ERROR_CYCLE_TIME;\r
276 extern void vSetupHighFrequencyTimer( void );\r
277 \r
278         /* If this is being executed then the kernel has been started.  Start the high\r
279         frequency timer test as described at the top of this file.  This is only\r
280         included in the optimised build configuration - otherwise it takes up too much\r
281         CPU time and can disrupt other tests. */\r
282         #ifdef INCLUDE_HIGH_FREQUENCY_TIMER_TEST\r
283                 vSetupHighFrequencyTimer();\r
284         #endif\r
285 \r
286         /* Initialise xNextWakeTime - this only needs to be done once. */\r
287         xNextWakeTime = xTaskGetTickCount();\r
288 \r
289         for( ;; )\r
290         {\r
291                 /* Place this task in the blocked state until it is time to run again. */\r
292                 vTaskDelayUntil( &xNextWakeTime, xCycleFrequency );\r
293 \r
294                 /* Check the standard demo tasks are running without error. */\r
295                 if( xAreGenericQueueTasksStillRunning() != pdTRUE )\r
296                 {\r
297                         /* Increase the rate at which this task cycles, which will increase the\r
298                         rate at which mainCHECK_LED flashes to give visual feedback that an error\r
299                         has occurred. */\r
300                         xCycleFrequency = mainERROR_CYCLE_TIME;\r
301                         pcStatusMessage = "Error: GenQueue";\r
302                 }\r
303                 else if( xAreQueuePeekTasksStillRunning() != pdTRUE )\r
304                 {\r
305                         xCycleFrequency = mainERROR_CYCLE_TIME;\r
306                         pcStatusMessage = "Error: QueuePeek";\r
307                 }\r
308                 else if( xAreBlockingQueuesStillRunning() != pdTRUE )\r
309                 {\r
310                         xCycleFrequency = mainERROR_CYCLE_TIME;\r
311                         pcStatusMessage = "Error: BlockQueue";\r
312                 }\r
313                 else if( xAreBlockTimeTestTasksStillRunning() != pdTRUE )\r
314                 {\r
315                         xCycleFrequency = mainERROR_CYCLE_TIME;\r
316                         pcStatusMessage = "Error: BlockTime";\r
317                 }\r
318                 else if( xAreSemaphoreTasksStillRunning() != pdTRUE )\r
319                 {\r
320                         xCycleFrequency = mainERROR_CYCLE_TIME;\r
321                         pcStatusMessage = "Error: SemTest";\r
322                 }\r
323                 else if( xArePollingQueuesStillRunning() != pdTRUE )\r
324                 {\r
325                         xCycleFrequency = mainERROR_CYCLE_TIME;\r
326                         pcStatusMessage = "Error: PollQueue";\r
327                 }\r
328                 else if( xIsCreateTaskStillRunning() != pdTRUE )\r
329                 {\r
330                         xCycleFrequency = mainERROR_CYCLE_TIME;\r
331                         pcStatusMessage = "Error: Death";\r
332                 }\r
333                 else if( xAreIntegerMathsTaskStillRunning() != pdTRUE )\r
334                 {\r
335                         xCycleFrequency = mainERROR_CYCLE_TIME;\r
336                         pcStatusMessage = "Error: IntMath";\r
337                 }\r
338                 else if( xAreRecursiveMutexTasksStillRunning() != pdTRUE )\r
339                 {\r
340                         xCycleFrequency = mainERROR_CYCLE_TIME;\r
341                         pcStatusMessage = "Error: RecMutex";\r
342                 }\r
343                 else if( xAreIntQueueTasksStillRunning() != pdPASS )\r
344                 {\r
345                         xCycleFrequency = mainERROR_CYCLE_TIME;\r
346                         pcStatusMessage = "Error: IntQueue";\r
347                 }\r
348                 else if( xAreMathsTaskStillRunning() != pdPASS )\r
349                 {\r
350                         xCycleFrequency = mainERROR_CYCLE_TIME;\r
351                         pcStatusMessage = "Error: Flop";\r
352                 }\r
353 \r
354                 /* Check the reg test tasks are still cycling.  They will stop incrementing\r
355                 their loop counters if they encounter an error. */\r
356                 if( ulRegTest1CycleCount == ulLastRegTest1CycleCount )\r
357                 {\r
358                         xCycleFrequency = mainERROR_CYCLE_TIME;\r
359                         pcStatusMessage = "Error: RegTest1";\r
360                 }\r
361 \r
362                 if( ulRegTest2CycleCount == ulLastRegTest2CycleCount )\r
363                 {\r
364                         xCycleFrequency = mainERROR_CYCLE_TIME;\r
365                         pcStatusMessage = "Error: RegTest2";\r
366                 }\r
367 \r
368                 ulLastRegTest1CycleCount = ulRegTest1CycleCount;\r
369                 ulLastRegTest2CycleCount = ulRegTest2CycleCount;\r
370 \r
371                 /* Toggle the check LED to give an indication of the system status.  If\r
372                 the LED toggles every 5 seconds then everything is ok.  A faster toggle\r
373                 indicates an error. */\r
374                 vParTestToggleLED( mainCHECK_LED );\r
375         }\r
376 }\r
377 /*-----------------------------------------------------------*/\r
378 \r
379 /* The RX port uses this callback function to configure its tick interrupt.\r
380 This allows the application to choose the tick interrupt source. */\r
381 void vApplicationSetupTimerInterrupt( void )\r
382 {\r
383         /* Enable compare match timer 0. */\r
384         MSTP( CMT0 ) = 0;\r
385 \r
386         /* Interrupt on compare match. */\r
387         CMT0.CMCR.BIT.CMIE = 1;\r
388 \r
389         /* Set the compare match value. */\r
390         CMT0.CMCOR = ( unsigned short ) ( ( ( configPERIPHERAL_CLOCK_HZ / configTICK_RATE_HZ ) -1 ) / 8 );\r
391 \r
392         /* Divide the PCLK by 8. */\r
393         CMT0.CMCR.BIT.CKS = 0;\r
394 \r
395         /* Enable the interrupt... */\r
396         _IEN( _CMT0_CMI0 ) = 1;\r
397 \r
398         /* ...and set its priority to the application defined kernel priority. */\r
399         _IPR( _CMT0_CMI0 ) = configKERNEL_INTERRUPT_PRIORITY;\r
400 \r
401         /* Start the timer. */\r
402         CMT.CMSTR0.BIT.STR0 = 1;\r
403 }\r
404 /*-----------------------------------------------------------*/\r
405 \r
406 /* This function is explained by the comments above its prototype at the top\r
407 of this file. */\r
408 void vApplicationMallocFailedHook( void )\r
409 {\r
410         for( ;; );\r
411 }\r
412 /*-----------------------------------------------------------*/\r
413 \r
414 /* This function is explained by the comments above its prototype at the top\r
415 of this file. */\r
416 void vApplicationStackOverflowHook( TaskHandle_t pxTask, char *pcTaskName )\r
417 {\r
418         for( ;; );\r
419 }\r
420 /*-----------------------------------------------------------*/\r
421 \r
422 /* This function is explained by the comments above its prototype at the top\r
423 of this file. */\r
424 void vApplicationIdleHook( void )\r
425 {\r
426 }\r
427 /*-----------------------------------------------------------*/\r
428 \r
429 /* This function is explained in the comments at the top of this file. */\r
430 static void prvRegTest1Task( void *pvParameters )\r
431 {\r
432         if( ( ( unsigned long ) pvParameters ) != mainREG_TEST_1_PARAMETER )\r
433         {\r
434                 /* The parameter did not contain the expected value. */\r
435                 for( ;; )\r
436                 {\r
437                         /* Stop the tick interrupt so its obvious something has gone wrong. */\r
438                         taskDISABLE_INTERRUPTS();\r
439                 }\r
440         }\r
441 \r
442         /* This is an inline asm function that never returns. */\r
443         prvRegTest1Implementation();\r
444 }\r
445 /*-----------------------------------------------------------*/\r
446 \r
447 /* This function is explained in the comments at the top of this file. */\r
448 static void prvRegTest2Task( void *pvParameters )\r
449 {\r
450         if( ( ( unsigned long ) pvParameters ) != mainREG_TEST_2_PARAMETER )\r
451         {\r
452                 /* The parameter did not contain the expected value. */\r
453                 for( ;; )\r
454                 {\r
455                         /* Stop the tick interrupt so its obvious something has gone wrong. */\r
456                         taskDISABLE_INTERRUPTS();\r
457                 }\r
458         }\r
459 \r
460         /* This is an inline asm function that never returns. */\r
461         prvRegTest2Implementation();\r
462 }\r
463 /*-----------------------------------------------------------*/\r
464 \r
465 /* This function is explained in the comments at the top of this file. */\r
466 #pragma inline_asm prvRegTest1Implementation\r
467 static void prvRegTest1Implementation( void )\r
468 {\r
469         ; Put a known value in each register.\r
470         MOV.L   #1, R1\r
471         MOV.L   #2, R2\r
472         MOV.L   #3, R3\r
473         MOV.L   #4, R4\r
474         MOV.L   #5, R5\r
475         MOV.L   #6, R6\r
476         MOV.L   #7, R7\r
477         MOV.L   #8, R8\r
478         MOV.L   #9, R9\r
479         MOV.L   #10, R10\r
480         MOV.L   #11, R11\r
481         MOV.L   #12, R12\r
482         MOV.L   #13, R13\r
483         MOV.L   #14, R14\r
484         MOV.L   #15, R15\r
485 \r
486         ; Loop, checking each iteration that each register still contains the\r
487         ; expected value.\r
488 TestLoop1:\r
489 \r
490         ; Push the registers that are going to get clobbered.\r
491         PUSHM   R14-R15\r
492 \r
493         ; Increment the loop counter to show this task is still getting CPU time.\r
494         MOV.L   #_ulRegTest1CycleCount, R14\r
495         MOV.L   [ R14 ], R15\r
496         ADD             #1, R15\r
497         MOV.L   R15, [ R14 ]\r
498 \r
499         ; Yield to extend the text coverage.  Set the bit in the ITU SWINTR register.\r
500         MOV.L   #1, R14\r
501         MOV.L   #0872E0H, R15\r
502         MOV.B   R14, [R15]\r
503         NOP\r
504         NOP\r
505 \r
506         ; Restore the clobbered registers.\r
507         POPM    R14-R15\r
508 \r
509         ; Now compare each register to ensure it still contains the value that was\r
510         ; set before this loop was entered.\r
511         CMP             #1, R1\r
512         BNE             RegTest1Error\r
513         CMP             #2, R2\r
514         BNE             RegTest1Error\r
515         CMP             #3, R3\r
516         BNE             RegTest1Error\r
517         CMP             #4, R4\r
518         BNE             RegTest1Error\r
519         CMP             #5, R5\r
520         BNE             RegTest1Error\r
521         CMP             #6, R6\r
522         BNE             RegTest1Error\r
523         CMP             #7, R7\r
524         BNE             RegTest1Error\r
525         CMP             #8, R8\r
526         BNE             RegTest1Error\r
527         CMP             #9, R9\r
528         BNE             RegTest1Error\r
529         CMP             #10, R10\r
530         BNE             RegTest1Error\r
531         CMP             #11, R11\r
532         BNE             RegTest1Error\r
533         CMP             #12, R12\r
534         BNE             RegTest1Error\r
535         CMP             #13, R13\r
536         BNE             RegTest1Error\r
537         CMP             #14, R14\r
538         BNE             RegTest1Error\r
539         CMP             #15, R15\r
540         BNE             RegTest1Error\r
541 \r
542         ; All comparisons passed, start a new itteratio of this loop.\r
543         BRA             TestLoop1\r
544 \r
545 RegTest1Error:\r
546         ; A compare failed, just loop here so the loop counter stops incrementing\r
547         ; causing the check task to indicate the error.\r
548         BRA RegTest1Error\r
549 }\r
550 /*-----------------------------------------------------------*/\r
551 \r
552 /* This function is explained in the comments at the top of this file. */\r
553 #pragma inline_asm prvRegTest2Implementation\r
554 static void prvRegTest2Implementation( void )\r
555 {\r
556         ; Put a known value in each register.\r
557         MOV.L   #10, R1\r
558         MOV.L   #20, R2\r
559         MOV.L   #30, R3\r
560         MOV.L   #40, R4\r
561         MOV.L   #50, R5\r
562         MOV.L   #60, R6\r
563         MOV.L   #70, R7\r
564         MOV.L   #80, R8\r
565         MOV.L   #90, R9\r
566         MOV.L   #100, R10\r
567         MOV.L   #110, R11\r
568         MOV.L   #120, R12\r
569         MOV.L   #130, R13\r
570         MOV.L   #140, R14\r
571         MOV.L   #150, R15\r
572 \r
573         ; Loop, checking on each iteration that each register still contains the\r
574         ; expected value.\r
575 TestLoop2:\r
576 \r
577         ; Push the registers that are going to get clobbered.\r
578         PUSHM   R14-R15\r
579 \r
580         ; Increment the loop counter to show this task is still getting CPU time.\r
581         MOV.L   #_ulRegTest2CycleCount, R14\r
582         MOV.L   [ R14 ], R15\r
583         ADD             #1, R15\r
584         MOV.L   R15, [ R14 ]\r
585 \r
586         ; Restore the clobbered registers.\r
587         POPM    R14-R15\r
588 \r
589         CMP             #10, R1\r
590         BNE             RegTest2Error\r
591         CMP             #20, R2\r
592         BNE             RegTest2Error\r
593         CMP             #30, R3\r
594         BNE             RegTest2Error\r
595         CMP             #40, R4\r
596         BNE             RegTest2Error\r
597         CMP             #50, R5\r
598         BNE             RegTest2Error\r
599         CMP             #60, R6\r
600         BNE             RegTest2Error\r
601         CMP             #70, R7\r
602         BNE             RegTest2Error\r
603         CMP             #80, R8\r
604         BNE             RegTest2Error\r
605         CMP             #90, R9\r
606         BNE             RegTest2Error\r
607         CMP             #100, R10\r
608         BNE             RegTest2Error\r
609         CMP             #110, R11\r
610         BNE             RegTest2Error\r
611         CMP             #120, R12\r
612         BNE             RegTest2Error\r
613         CMP             #130, R13\r
614         BNE             RegTest2Error\r
615         CMP             #140, R14\r
616         BNE             RegTest2Error\r
617         CMP             #150, R15\r
618         BNE             RegTest2Error\r
619 \r
620         ; All comparisons passed, start a new itteratio of this loop.\r
621         BRA             TestLoop2\r
622 \r
623 RegTest2Error:\r
624         ; A compare failed, just loop here so the loop counter stops incrementing\r
625         ; - causing the check task to indicate the error.\r
626         BRA RegTest2Error\r
627 }\r
628 /*-----------------------------------------------------------*/\r
629 \r
630 char *pcGetTaskStatusMessage( void )\r
631 {\r
632         /* Not bothered about a critical section here although technically because of\r
633         the task priorities the pointer could change it will be atomic if not near\r
634         atomic and its not critical. */\r
635         return ( char * ) pcStatusMessage;\r
636 }\r
637 /*-----------------------------------------------------------*/\r
638 \r
639 \r