]> git.sur5r.net Git - freertos/blob - FreeRTOS/Demo/CORTEX_LM3S102_Rowley/Demo1/main.c
3cbfb90f3855e56e4d0ca40f2f9b9f53749c0ffd
[freertos] / FreeRTOS / Demo / CORTEX_LM3S102_Rowley / Demo1 / main.c
1 /*\r
2  * FreeRTOS Kernel V10.0.0\r
3  * Copyright (C) 2017 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. If you wish to use our Amazon\r
14  * FreeRTOS name, please do so in a fair use way that does not cause confusion.\r
15  *\r
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r
17  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\r
18  * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\r
19  * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\r
20  * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\r
21  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\r
22  *\r
23  * http://www.FreeRTOS.org\r
24  * http://aws.amazon.com/freertos\r
25  *\r
26  * 1 tab == 4 spaces!\r
27  */\r
28 \r
29 /* \r
30  * This demo application creates six co-routines and two tasks (three including \r
31  * the idle task).  The co-routines execute as part of the idle task hook.\r
32  *\r
33  * Five of the created co-routines are the standard 'co-routine flash' \r
34  * co-routines contained within the Demo/Common/Minimal/crflash.c file and \r
35  * documented on the FreeRTOS.org WEB site.  \r
36  *\r
37  * The 'LCD Task' rotates a string on the LCD, delaying between each character\r
38  * as necessitated by the slow interface, and delaying between each string just\r
39  * long enough to enable the text to be read.\r
40  *\r
41  * The sixth co-routine and final task control the transmission and reception\r
42  * of a string to UART 0.  The co-routine periodically sends the first \r
43  * character of the string to the UART, with the UART's TxEnd interrupt being\r
44  * used to transmit the remaining characters.  The UART's RxEnd interrupt \r
45  * receives the characters and places them on a queue to be processed by the \r
46  * 'COMs Rx' task.  An error is latched should an unexpected character be \r
47  * received, or any character be received out of sequence.  \r
48  *\r
49  * A loopback connector is required to ensure that each character transmitted \r
50  * on the UART is also received on the same UART.  For test purposes the UART\r
51  * FIFO's are not utalised in order to maximise the interrupt overhead.  Also\r
52  * a pseudo random interval is used between the start of each transmission in \r
53  * order that the resultant interrupts are more randomly distributed and \r
54  * therefore more likely to highlight any problems.\r
55  *\r
56  * The flash co-routines control LED's zero to four.  LED five is toggled each\r
57  * time the string is transmitted on the UART.  LED six is toggled each time\r
58  * the string is CORRECTLY received on the UART.  LED seven is latched on should\r
59  * an error be detected in any task or co-routine.\r
60  *\r
61  * In addition the idle task makes repetative calls to \r
62  * prvSetAndCheckRegisters().  This simply loads the general purpose registers \r
63  * with a known value, then checks each register to ensure the held value is \r
64  * still correct.  As a low priority task this checking routine is likely to \r
65  * get repeatedly swapped in and out.  A register being found to contain an \r
66  * incorrect value is therefore indicative of an error in the task switching \r
67  * mechansim.\r
68  *\r
69  */\r
70 \r
71 /* Scheduler include files. */\r
72 #include "FreeRTOS.h"\r
73 #include "task.h"\r
74 #include "queue.h"\r
75 #include "croutine.h"\r
76 \r
77 /* Demo application include files. */\r
78 #include "partest.h"\r
79 #include "crflash.h"\r
80 \r
81 /* Library include files. */\r
82 #include "DriverLib.h"\r
83 \r
84 /* The time to delay between writing each character to the LCD. */\r
85 #define mainCHAR_WRITE_DELAY            ( 2 / portTICK_PERIOD_MS )\r
86 \r
87 /* The time to delay between writing each string to the LCD. */\r
88 #define mainSTRING_WRITE_DELAY          ( 400 / portTICK_PERIOD_MS )\r
89 \r
90 /* The number of flash co-routines to create. */\r
91 #define mainNUM_FLASH_CO_ROUTINES       ( 5 )\r
92 \r
93 /* The length of the queue used to pass received characters to the Comms Rx\r
94 task. */\r
95 #define mainRX_QUEUE_LEN                        ( 5 )\r
96 \r
97 /* The priority of the co-routine used to initiate the transmission of the \r
98 string on UART 0. */\r
99 #define mainTX_CO_ROUTINE_PRIORITY      ( 1 )\r
100 \r
101 /* Only one co-routine is created so its index is not important. */\r
102 #define mainTX_CO_ROUTINE_INDEX         ( 0 )\r
103 \r
104 /* The time between transmissions of the string on UART 0.   This is pseudo\r
105 random in order to generate a bit or randomness to when the interrupts occur.*/\r
106 #define mainMIN_TX_DELAY                        ( 40 / portTICK_PERIOD_MS )\r
107 #define mainMAX_TX_DELAY                        ( ( TickType_t ) 0x7f )\r
108 #define mainOFFSET_TIME                         ( ( TickType_t ) 3 )\r
109 \r
110 /* The time the Comms Rx task should wait to receive a character.  This should\r
111 be slightly longer than the time between transmissions.  If we do not receive\r
112 a character after this time then there must be an error in the transmission or\r
113 the timing of the transmission. */\r
114 #define mainCOMMS_RX_DELAY                      ( mainMAX_TX_DELAY + 20 )\r
115 \r
116 /* The task priorites. */\r
117 #define mainLCD_TASK_PRIORITY           ( tskIDLE_PRIORITY )\r
118 #define mainCOMMS_RX_TASK_PRIORITY      ( tskIDLE_PRIORITY + 1 )\r
119 \r
120 /* The LED's toggled by the various tasks. */\r
121 #define mainCOMMS_FAIL_LED                      ( 7 )\r
122 #define mainCOMMS_RX_LED                        ( 6 )\r
123 #define mainCOMMS_TX_LED                        ( 5 )\r
124 \r
125 /* The baud rate used by the UART comms tasks/co-routine. */\r
126 #define mainBAUD_RATE                           ( 57600 )\r
127 \r
128 /* FIFO setting for the UART.  The FIFO is not used to create a better test. */\r
129 #define mainFIFO_SET                            ( 0x10 )\r
130 \r
131 /* The string that is transmitted on the UART contains sequentially the \r
132 characters from mainFIRST_TX_CHAR to mainLAST_TX_CHAR. */\r
133 #define mainFIRST_TX_CHAR '0'\r
134 #define mainLAST_TX_CHAR 'z'\r
135 \r
136 /* Just used to walk through the program memory in order that some random data\r
137 can be generated. */\r
138 #define mainTOTAL_PROGRAM_MEMORY ( ( unsigned long * ) ( 8 * 1024 ) )\r
139 #define mainFIRST_PROGRAM_BYTES ( ( unsigned long * ) 4 )\r
140 \r
141 /* The error routine that is called if the driver library encounters an error. */\r
142 #ifdef DEBUG\r
143 void\r
144 __error__(char *pcFilename, unsigned long ulLine)\r
145 {\r
146 }\r
147 #endif\r
148 \r
149 /*-----------------------------------------------------------*/\r
150 \r
151 /*\r
152  * The task that rotates text on the LCD.\r
153  */\r
154 static void vLCDTask( void * pvParameters );\r
155 \r
156 /*\r
157  * The task that receives the characters from UART 0.\r
158  */\r
159 static void vCommsRxTask( void * pvParameters );\r
160 \r
161 /*\r
162  * The co-routine that periodically initiates the transmission of the string on\r
163  * the UART.\r
164  */\r
165 static void vSerialTxCoRoutine( CoRoutineHandle_t xHandle, unsigned portBASE_TYPE uxIndex );\r
166 \r
167 /* \r
168  * Writes a string the the LCD.\r
169  */\r
170 static void prvWriteString( const char *pcString );\r
171 \r
172 /*\r
173  * Initialisation routine for the UART.\r
174  */\r
175 static void vSerialInit( void );\r
176 \r
177 /*\r
178  * Thread safe write to the PDC.\r
179  */\r
180 static void prvPDCWrite( char cAddress, char cData );\r
181 \r
182 /*\r
183  * Function to simply set a known value into the general purpose registers\r
184  * then read them back to ensure they remain set correctly.  An incorrect value\r
185  * being indicative of an error in the task switching mechanism.\r
186  */\r
187 void prvSetAndCheckRegisters( void );\r
188 \r
189 /*\r
190  * Latch the LED that indicates that an error has occurred. \r
191  */\r
192 void vSetErrorLED( void );\r
193 \r
194 /*\r
195  * Sets up the PLL and ports used by the demo.\r
196  */\r
197 static void prvSetupHardware( void );\r
198 \r
199 /*-----------------------------------------------------------*/\r
200 \r
201 /* Error flag set to pdFAIL if an error is encountered in the tasks/co-routines\r
202 defined within this file. */\r
203 unsigned portBASE_TYPE uxErrorStatus = pdPASS;\r
204 \r
205 /* The next character to transmit. */\r
206 static char cNextChar;\r
207 \r
208 /* The queue used to transmit characters from the interrupt to the Comms Rx\r
209 task. */\r
210 static QueueHandle_t xCommsQueue;\r
211 \r
212 /*-----------------------------------------------------------*/\r
213 \r
214 int main( void )\r
215 {\r
216         /* Create the queue used to communicate between the UART ISR and the Comms\r
217         Rx task. */\r
218         xCommsQueue = xQueueCreate( mainRX_QUEUE_LEN, sizeof( char ) );\r
219 \r
220         /* Setup the ports used by the demo and the clock. */\r
221         prvSetupHardware();\r
222 \r
223         /* Create the co-routines that flash the LED's. */\r
224         vStartFlashCoRoutines( mainNUM_FLASH_CO_ROUTINES );\r
225 \r
226         /* Create the co-routine that initiates the transmission of characters\r
227         on the UART. */\r
228         xCoRoutineCreate( vSerialTxCoRoutine, mainTX_CO_ROUTINE_PRIORITY, mainTX_CO_ROUTINE_INDEX );\r
229 \r
230         /* Create the LCD and Comms Rx tasks. */\r
231         xTaskCreate( vLCDTask, "LCD", configMINIMAL_STACK_SIZE, NULL, mainLCD_TASK_PRIORITY, NULL );\r
232         xTaskCreate( vCommsRxTask, "CMS", configMINIMAL_STACK_SIZE, NULL, mainCOMMS_RX_TASK_PRIORITY, NULL );\r
233 \r
234         /* Start the scheduler running the tasks and co-routines just created. */\r
235         vTaskStartScheduler();\r
236 \r
237         /* Should not get here unless we did not have enough memory to start the\r
238         scheduler. */\r
239         for( ;; );\r
240         return 0;\r
241 }\r
242 /*-----------------------------------------------------------*/\r
243 \r
244 static void prvSetupHardware( void )\r
245 {\r
246         /* Setup the PLL. */\r
247         SysCtlClockSet( SYSCTL_SYSDIV_10 | SYSCTL_USE_PLL | SYSCTL_OSC_MAIN | SYSCTL_XTAL_6MHZ );\r
248 \r
249         /* Initialise the hardware used to talk to the LCD, LED's and UART. */\r
250         PDCInit();\r
251         vParTestInitialise();\r
252         vSerialInit();\r
253 }\r
254 /*-----------------------------------------------------------*/\r
255 \r
256 void vApplicationIdleHook( void )\r
257 {\r
258         /* The co-routines are executed in the idle task using the idle task \r
259         hook. */\r
260         for( ;; )\r
261         {\r
262                 /* Schedule the co-routines. */\r
263                 vCoRoutineSchedule();\r
264 \r
265                 /* Run the register check function between each co-routine. */\r
266                 prvSetAndCheckRegisters();\r
267         }\r
268 }\r
269 /*-----------------------------------------------------------*/\r
270 \r
271 static void prvWriteString( const char *pcString )\r
272 {\r
273         /* Write pcString to the LED, pausing between each character. */\r
274         prvPDCWrite(PDC_LCD_CSR, LCD_CLEAR);        \r
275         while( *pcString )\r
276         {\r
277                 vTaskDelay( mainCHAR_WRITE_DELAY );\r
278                 prvPDCWrite( PDC_LCD_RAM, *pcString );\r
279                 pcString++;\r
280         }\r
281 }\r
282 /*-----------------------------------------------------------*/\r
283 \r
284 void vLCDTask( void * pvParameters )\r
285 {\r
286 unsigned portBASE_TYPE uxIndex;\r
287 const unsigned char ucCFGData[] = {     \r
288                                                                                         0x30,   /* Set data bus to 8-bits. */\r
289                                                                                         0x30,\r
290                                                                                         0x30,\r
291                                                                                         0x3C,   /* Number of lines/font. */\r
292                                                                                         0x08,   /* Display off. */\r
293                                                                                         0x01,   /* Display clear. */\r
294                                                                                         0x06,   /* Entry mode [cursor dir][shift]. */\r
295                                                                                         0x0C    /* Display on [display on][curson on][blinking on]. */\r
296                                                                           };  \r
297 \r
298 /* The strings that are written to the LCD. */\r
299 const char *pcStringsToDisplay[] = {                                                                            \r
300                                                                                         "Stellaris",\r
301                                                                                         "Demo",\r
302                                                                                         "One",\r
303                                                                                         "www.FreeRTOS.org",\r
304                                                                                         ""\r
305                                                                            };\r
306 \r
307         /* Configure the LCD. */\r
308         uxIndex = 0;\r
309         while( uxIndex < sizeof( ucCFGData ) )\r
310         {\r
311                 prvPDCWrite( PDC_LCD_CSR, ucCFGData[ uxIndex ] );\r
312                 uxIndex++;\r
313                 vTaskDelay( mainCHAR_WRITE_DELAY );\r
314         }\r
315 \r
316         /* Turn the LCD Backlight on. */\r
317         prvPDCWrite( PDC_CSR, 0x01 );\r
318 \r
319         /* Clear display. */\r
320         vTaskDelay( mainCHAR_WRITE_DELAY );\r
321         prvPDCWrite( PDC_LCD_CSR, LCD_CLEAR ); \r
322 \r
323         uxIndex = 0;\r
324         for( ;; )    \r
325         {\r
326                 /* Display the string on the LCD. */\r
327                 prvWriteString( pcStringsToDisplay[ uxIndex ] );\r
328                 \r
329                 /* Move on to the next string - wrapping if necessary. */\r
330                 uxIndex++;\r
331                 if( *( pcStringsToDisplay[ uxIndex ] ) == 0x00 )\r
332                 {\r
333                         uxIndex = 0;\r
334                         /* Longer pause on the last string to be sent. */\r
335                         vTaskDelay( mainSTRING_WRITE_DELAY * 2 );\r
336                 }\r
337 \r
338                 /* Wait until it is time to move onto the next string. */\r
339                 vTaskDelay( mainSTRING_WRITE_DELAY );\r
340         }\r
341 }\r
342 /*-----------------------------------------------------------*/\r
343 \r
344 static void vCommsRxTask( void * pvParameters )\r
345 {\r
346 static char cRxedChar, cExpectedChar;\r
347 \r
348         /* Set the char we expect to receive to the start of the string. */\r
349         cExpectedChar = mainFIRST_TX_CHAR;\r
350 \r
351         for( ;; )\r
352         {\r
353                 /* Wait for a character to be received. */\r
354                 xQueueReceive( xCommsQueue, ( void * ) &cRxedChar, mainCOMMS_RX_DELAY );\r
355 \r
356                 /* Was the character recived (if any) the expected character. */\r
357                 if( cRxedChar != cExpectedChar )\r
358                 {\r
359                         /* Got an unexpected character.  This can sometimes occur when\r
360                         reseting the system using the debugger leaving characters already\r
361                         in the UART regsters. */\r
362                         uxErrorStatus = pdFAIL;\r
363 \r
364                         /* Resync by waiting for the end of the current string. */\r
365                         while( cRxedChar != mainLAST_TX_CHAR )\r
366                         {\r
367                                 while( !xQueueReceive( xCommsQueue, ( void * ) &cRxedChar, portMAX_DELAY ) );\r
368                         }\r
369 \r
370                         /* The next expected character is the start of the string again. */\r
371                         cExpectedChar = mainFIRST_TX_CHAR;\r
372                 }\r
373                 else\r
374                 {\r
375                         if( cExpectedChar == mainLAST_TX_CHAR )\r
376                         {\r
377                                 /* We have reached the end of the string - we now expect to \r
378                                 receive the first character in the string again.   The LED is \r
379                                 toggled to indicate that the entire string was received without\r
380                                 error. */\r
381                                 vParTestToggleLED( mainCOMMS_RX_LED );\r
382                                 cExpectedChar = mainFIRST_TX_CHAR;\r
383                         }\r
384                         else\r
385                         {\r
386                                 /* We got the expected character, we now expect to receive the\r
387                                 next character in the string. */\r
388                                 cExpectedChar++;\r
389                         }\r
390                 }\r
391         }\r
392 }\r
393 /*-----------------------------------------------------------*/\r
394 \r
395 static void vSerialTxCoRoutine( CoRoutineHandle_t xHandle, unsigned portBASE_TYPE uxIndex )\r
396 {\r
397 TickType_t xDelayPeriod;\r
398 static unsigned long *pulRandomBytes = mainFIRST_PROGRAM_BYTES;\r
399 \r
400         /* Co-routine MUST start with a call to crSTART. */\r
401         crSTART( xHandle );\r
402 \r
403         for(;;)\r
404     {   \r
405                 /* Was the previously transmitted string received correctly? */\r
406                 if( uxErrorStatus != pdPASS )\r
407                 {\r
408                         /* An error was encountered so set the error LED. */\r
409                         vSetErrorLED();\r
410                 }\r
411 \r
412                 /* The next character to Tx is the first in the string. */\r
413                 cNextChar = mainFIRST_TX_CHAR;\r
414 \r
415                 UARTIntDisable( UART0_BASE, UART_INT_TX );\r
416                 {\r
417                         /* Send the first character. */\r
418                         if( !( HWREG( UART0_BASE + UART_O_FR ) & UART_FR_TXFF ) )\r
419                         {\r
420                                 HWREG( UART0_BASE + UART_O_DR ) = cNextChar;\r
421                         }\r
422 \r
423                         /* Move the variable to the char to Tx on so the ISR transmits\r
424                         the next character in the string once this one has completed. */\r
425                         cNextChar++;\r
426                 }\r
427                 UARTIntEnable(UART0_BASE, UART_INT_TX);\r
428 \r
429                 /* Toggle the LED to show a new string is being transmitted. */\r
430         vParTestToggleLED( mainCOMMS_TX_LED );\r
431 \r
432                 /* Delay before we start the string off again.  A pseudo-random delay\r
433                 is used as this will provide a better test. */\r
434                 xDelayPeriod = xTaskGetTickCount() + ( *pulRandomBytes );\r
435 \r
436                 pulRandomBytes++;\r
437                 if( pulRandomBytes > mainTOTAL_PROGRAM_MEMORY )\r
438                 {\r
439                         pulRandomBytes = mainFIRST_PROGRAM_BYTES;\r
440                 }\r
441 \r
442                 /* Make sure we don't wait too long... */\r
443                 xDelayPeriod &= mainMAX_TX_DELAY;\r
444 \r
445                 /* ...but we do want to wait. */\r
446                 if( xDelayPeriod < mainMIN_TX_DELAY )\r
447                 {\r
448                         xDelayPeriod = mainMIN_TX_DELAY;\r
449                 }\r
450 \r
451                 /* Block for the random(ish) time. */\r
452                 crDELAY( xHandle, xDelayPeriod );\r
453     }\r
454 \r
455         /* Co-routine MUST end with a call to crEND. */\r
456         crEND();\r
457 }\r
458 /*-----------------------------------------------------------*/\r
459 \r
460 static void vSerialInit( void )\r
461 {\r
462         /* Enable the UART.  GPIOA has already been initialised. */\r
463         SysCtlPeripheralEnable(SYSCTL_PERIPH_UART0);\r
464 \r
465         /* Set GPIO A0 and A1 as peripheral function.  They are used to output the\r
466         UART signals. */\r
467         GPIODirModeSet( GPIO_PORTA_BASE, GPIO_PIN_0 | GPIO_PIN_1, GPIO_DIR_MODE_HW );\r
468 \r
469         /* Configure the UART for 8-N-1 operation. */\r
470         UARTConfigSet( UART0_BASE, mainBAUD_RATE, UART_CONFIG_WLEN_8 | UART_CONFIG_PAR_NONE | UART_CONFIG_STOP_ONE );\r
471 \r
472         /* We dont want to use the fifo.  This is for test purposes to generate\r
473         as many interrupts as possible. */\r
474         HWREG( UART0_BASE + UART_O_LCR_H ) &= ~mainFIFO_SET;\r
475 \r
476         /* Enable both Rx and Tx interrupts. */\r
477         HWREG( UART0_BASE + UART_O_IM ) |= ( UART_INT_TX | UART_INT_RX );\r
478         IntEnable( INT_UART0 );\r
479 }\r
480 /*-----------------------------------------------------------*/\r
481 \r
482 void vUART_ISR(void)\r
483 {\r
484 unsigned long ulStatus;\r
485 char cRxedChar;\r
486 portBASE_TYPE xHigherPriorityTaskWoken = pdFALSE;\r
487 \r
488         /* What caused the interrupt. */\r
489         ulStatus = UARTIntStatus( UART0_BASE, pdTRUE );\r
490 \r
491         /* Clear the interrupt. */\r
492         UARTIntClear( UART0_BASE, ulStatus );\r
493 \r
494         /* Was an Rx interrpt pending? */\r
495         if( ulStatus & UART_INT_RX )\r
496         {\r
497                 if( ( HWREG(UART0_BASE + UART_O_FR ) & UART_FR_RXFF ) )\r
498                 {\r
499                         /* Get the char from the buffer and post it onto the queue of\r
500                         Rxed chars.  Posting the character should wake the task that is \r
501                         blocked on the queue waiting for characters. */\r
502                         cRxedChar = ( char ) HWREG( UART0_BASE + UART_O_DR );\r
503                         xQueueSendFromISR( xCommsQueue, &cRxedChar, &xHigherPriorityTaskWoken );\r
504                 }               \r
505         }\r
506 \r
507         /* Was a Tx interrupt pending? */\r
508         if( ulStatus & UART_INT_TX )\r
509         {\r
510                 /* Send the next character in the string.  We are not using the FIFO. */\r
511                 if( cNextChar <= mainLAST_TX_CHAR )\r
512                 {\r
513                         if( !( HWREG( UART0_BASE + UART_O_FR ) & UART_FR_TXFF ) )\r
514                         {\r
515                                 HWREG( UART0_BASE + UART_O_DR ) = cNextChar;\r
516                         }\r
517                         cNextChar++;\r
518                 }\r
519         }\r
520         \r
521         /* If a task was woken by the character being received then we force\r
522         a context switch to occur in case the task is of higher priority than\r
523         the currently executing task (i.e. the task that this interrupt \r
524         interrupted.) */\r
525         portEND_SWITCHING_ISR( xHigherPriorityTaskWoken );\r
526 }\r
527 /*-----------------------------------------------------------*/\r
528 \r
529 static void prvPDCWrite( char cAddress, char cData )\r
530 {\r
531         vTaskSuspendAll();\r
532         {\r
533                 PDCWrite( cAddress, cData );\r
534         }\r
535         xTaskResumeAll();\r
536 }\r
537 /*-----------------------------------------------------------*/\r
538 \r
539 void vSetErrorLED( void )\r
540 {\r
541         vParTestSetLED( mainCOMMS_FAIL_LED, pdTRUE );\r
542 }\r
543 /*-----------------------------------------------------------*/\r
544 \r
545 void prvSetAndCheckRegisters( void )\r
546 {\r
547         /* Fill the general purpose registers with known values. */\r
548         __asm volatile\r
549         ( \r
550         "       mov r11, #10            \n"\r
551         "       add r0, r11, #1         \n"\r
552         "       add r1, r11, #2         \n"\r
553         "       add r2, r11, #3         \n"\r
554         "       add r3, r11, #4         \n"\r
555         "       add r4, r11, #5         \n"\r
556         "       add r5, r11, #6         \n"\r
557         "       add r6, r11, #7         \n"\r
558         "       add r7, r11, #8         \n"\r
559         "       add r8, r11, #9         \n"\r
560         "       add r9, r11, #10        \n"\r
561         "       add r10, r11, #11       \n"\r
562         "       add r12, r11, #12" \r
563         );\r
564 \r
565         /* Check the values are as expected. */\r
566         __asm volatile\r
567         ( \r
568         "       cmp r11, #10            \n"\r
569         "       bne set_error_led       \n"\r
570         "       cmp r0, #11                     \n"\r
571         "       bne set_error_led       \n"\r
572         "       cmp r1, #12                     \n"\r
573         "       bne set_error_led       \n"\r
574         "       cmp r2, #13                     \n"\r
575         "       bne set_error_led       \n"\r
576         "       cmp r3, #14                     \n"\r
577         "       bne set_error_led       \n"\r
578         "       cmp r4, #15                     \n"\r
579         "       bne set_error_led       \n"\r
580         "       cmp r5, #16                     \n"\r
581         "       bne set_error_led       \n"\r
582         "       cmp r6, #17                     \n"\r
583         "       bne set_error_led       \n"\r
584         "       cmp r7, #18                     \n"\r
585         "       bne set_error_led       \n"\r
586         "       cmp r8, #19                     \n"\r
587         "       bne set_error_led       \n"\r
588         "       cmp r9, #20                     \n"\r
589         "       bne set_error_led       \n"\r
590         "       cmp r10, #21            \n"\r
591         "       bne set_error_led       \n"\r
592         "       cmp r12, #22            \n"\r
593         "       bne set_error_led       \n"\r
594         "       bx lr" \r
595         );\r
596 \r
597         __asm volatile\r
598         (\r
599         "set_error_led:                 \n"\r
600         "       push {r14}                      \n"\r
601         "       ldr r1, vSetErrorLEDConst\n"\r
602         "       blx r1                          \n"\r
603         "       pop {r14}                       \n"\r
604         "       bx lr                           \n"\r
605         "                                               \n"\r
606         "       .align 2                        \n"\r
607         "vSetErrorLEDConst: .word vSetErrorLED"\r
608         );\r
609 }\r
610 /*-----------------------------------------------------------*/\r