]> git.sur5r.net Git - freertos/blob - FreeRTOS/Demo/MSP430X_MSP430F5438_IAR/main.c
Update version number ready to release the FAT file system demo.
[freertos] / FreeRTOS / Demo / MSP430X_MSP430F5438_IAR / main.c
1 /*\r
2     FreeRTOS V7.4.2 - Copyright (C) 2013 Real Time Engineers Ltd.\r
3 \r
4     FEATURES AND PORTS ARE ADDED TO FREERTOS ALL THE TIME.  PLEASE VISIT\r
5     http://www.FreeRTOS.org TO ENSURE YOU ARE USING THE LATEST VERSION.\r
6 \r
7     ***************************************************************************\r
8      *                                                                       *\r
9      *    FreeRTOS tutorial books are available in pdf and paperback.        *\r
10      *    Complete, revised, and edited pdf reference manuals are also       *\r
11      *    available.                                                         *\r
12      *                                                                       *\r
13      *    Purchasing FreeRTOS documentation will not only help you, by       *\r
14      *    ensuring you get running as quickly as possible and with an        *\r
15      *    in-depth knowledge of how to use FreeRTOS, it will also help       *\r
16      *    the FreeRTOS project to continue with its mission of providing     *\r
17      *    professional grade, cross platform, de facto standard solutions    *\r
18      *    for microcontrollers - completely free of charge!                  *\r
19      *                                                                       *\r
20      *    >>> See http://www.FreeRTOS.org/Documentation for details. <<<     *\r
21      *                                                                       *\r
22      *    Thank you for using FreeRTOS, and thank you for your support!      *\r
23      *                                                                       *\r
24     ***************************************************************************\r
25 \r
26 \r
27     This file is part of the FreeRTOS distribution.\r
28 \r
29     FreeRTOS is free software; you can redistribute it and/or modify it under\r
30     the terms of the GNU General Public License (version 2) as published by the\r
31     Free Software Foundation AND MODIFIED BY the FreeRTOS exception.\r
32 \r
33     >>>>>>NOTE<<<<<< The modification to the GPL is included to allow you to\r
34     distribute a combined work that includes FreeRTOS without being obliged to\r
35     provide the source code for proprietary components outside of the FreeRTOS\r
36     kernel.\r
37 \r
38     FreeRTOS is distributed in the hope that it will be useful, but WITHOUT ANY\r
39     WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS\r
40     FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more\r
41     details. You should have received a copy of the GNU General Public License\r
42     and the FreeRTOS license exception along with FreeRTOS; if not it can be\r
43     viewed here: http://www.freertos.org/a00114.html and also obtained by\r
44     writing to Real Time Engineers Ltd., contact details for whom are available\r
45     on the FreeRTOS WEB site.\r
46 \r
47     1 tab == 4 spaces!\r
48 \r
49     ***************************************************************************\r
50      *                                                                       *\r
51      *    Having a problem?  Start by reading the FAQ "My application does   *\r
52      *    not run, what could be wrong?"                                     *\r
53      *                                                                       *\r
54      *    http://www.FreeRTOS.org/FAQHelp.html                               *\r
55      *                                                                       *\r
56     ***************************************************************************\r
57 \r
58 \r
59     http://www.FreeRTOS.org - Documentation, books, training, latest versions, \r
60     license and Real Time Engineers Ltd. contact details.\r
61 \r
62     http://www.FreeRTOS.org/plus - A selection of FreeRTOS ecosystem products,\r
63     including FreeRTOS+Trace - an indispensable productivity tool, and our new\r
64     fully thread aware and reentrant UDP/IP stack.\r
65 \r
66     http://www.OpenRTOS.com - Real Time Engineers ltd license FreeRTOS to High \r
67     Integrity Systems, who sell the code with commercial support, \r
68     indemnification and middleware, under the OpenRTOS brand.\r
69     \r
70     http://www.SafeRTOS.com - High Integrity Systems also provide a safety \r
71     engineered and independently SIL3 certified version for use in safety and \r
72     mission critical applications that require provable dependability.\r
73 */\r
74 \r
75 /*\r
76  * The documentation page for this demo available on http://www.FreeRTOS.org\r
77  * documents the hardware configuration required to run this demo.  It also\r
78  * provides more information on the expected demo application behaviour.\r
79  *\r
80  * main() creates all the demo application tasks, then starts the scheduler.\r
81  * A lot of the created tasks are from the pool of "standard demo" tasks.  The\r
82  * web documentation provides more details of the standard demo tasks, which\r
83  * provide no particular functionality but do provide good examples of how to\r
84  * use the FreeRTOS API.\r
85  *\r
86  * In addition to the standard demo tasks, the following tasks, interrupts and\r
87  * tests are defined and/or created within this file:\r
88  *\r
89  * "LCD" task - The LCD task is a 'gatekeeper' task.  It is the only task that\r
90  * is permitted to access the LCD and therefore ensures access to the LCD is\r
91  * always serialised and there are no mutual exclusion issues.  When a task or\r
92  * an interrupt wants to write to the LCD, it does not access the LCD directly\r
93  * but instead sends the message to the LCD task.  The LCD task then performs\r
94  * the actual LCD output.  This mechanism also allows interrupts to, in effect,\r
95  * write to the LCD by sending messages to the LCD task.\r
96  *\r
97  * The LCD task is also a demonstration of a 'controller' task design pattern.\r
98  * Some tasks do not actually send a string to the LCD task directly, but\r
99  * instead send a command that is interpreted by the LCD task.  In a normal\r
100  * application these commands can be control values or set points, in this\r
101  * simple example the commands just result in messages being displayed on the\r
102  * LCD.\r
103  *\r
104  * "Button Poll" task - This task polls the state of the 'up' key on the\r
105  * joystick input device.  It uses the vTaskDelay() API function to control\r
106  * the poll rate to ensure debouncing is not necessary and that the task does\r
107  * not use all the available CPU processing time.\r
108  *\r
109  * Button Interrupt and run time stats display - The select button on the\r
110  * joystick input device is configured to generate an external interrupt.  The\r
111  * handler for this interrupt sends a message to LCD task, which interprets the\r
112  * message to mean, firstly write a message to the LCD, and secondly, generate\r
113  * a table of run time statistics.  The run time statistics are displayed as a\r
114  * table that contains information on how much processing time each task has\r
115  * been allocated since the application started to execute.  This information\r
116  * is provided both as an absolute time, and as a percentage of the total run\r
117  * time.  The information is displayed in the terminal IO window of the IAR\r
118  * embedded workbench.  The online documentation for this demo shows a screen\r
119  * shot demonstrating where the run time stats can be viewed.\r
120  *\r
121  * Idle Hook - The idle hook is a function that is called on each iteration of\r
122  * the idle task.  In this case it is used to place the processor into a low\r
123  * power mode.  Note however that this application is implemented using standard\r
124  * components, and is therefore not optimised for low power operation.  Lower\r
125  * power consumption would be achieved by converting polling tasks into event\r
126  * driven tasks, and slowing the tick interrupt frequency.\r
127  *\r
128  * "Check" function called from the tick hook - The tick hook is called during\r
129  * each tick interrupt.  It is called from an interrupt context so must execute\r
130  * quickly, not attempt to block, and not call any FreeRTOS API functions that\r
131  * do not end in "FromISR".  In this case the tick hook executes a 'check'\r
132  * function.  This only executes every five seconds.  Its main function is to\r
133  * check that all the standard demo tasks are still operational.  Each time it\r
134  * executes it sends a status code to the LCD task.  The LCD task interprets the\r
135  * code and displays an appropriate message - which will be PASS if no tasks\r
136  * have reported any errors, or a message stating which task has reported an\r
137  * error.\r
138  *\r
139  * "Reg test" tasks - These fill the registers with known values, then check\r
140  * that each register still contains its expected value.  Each task uses\r
141  * different values.  The tasks run with very low priority so get preempted\r
142  * very frequently.  A check variable is incremented on each iteration of the\r
143  * test loop.  A register containing an unexpected value is indicative of an\r
144  * error in the context switching mechanism and will result in a branch to a\r
145  * null loop - which in turn will prevent the check variable from incrementing\r
146  * any further and allow the check task (described a above) to determine that an\r
147  * error has occurred.  The nature of the reg test tasks necessitates that they\r
148  * are written in assembly code.\r
149  *\r
150  * *NOTE 1* vApplicationSetupTimerInterrupt() is called by the kernel to let\r
151  * the application set up a timer to generate the tick interrupt.  In this\r
152  * example a timer A0 is used for this purpose.\r
153  *\r
154 */\r
155 \r
156 /* Standard includes. */\r
157 #include <stdio.h>\r
158 \r
159 /* FreeRTOS includes. */\r
160 #include "FreeRTOS.h"\r
161 #include "task.h"\r
162 #include "queue.h"\r
163 \r
164 /* Hardware includes. */\r
165 #include "msp430.h"\r
166 #include "hal_MSP-EXP430F5438.h"\r
167 \r
168 /* Standard demo includes. */\r
169 #include "ParTest.h"\r
170 #include "dynamic.h"\r
171 #include "comtest2.h"\r
172 #include "GenQTest.h"\r
173 \r
174 /* Codes sent within messages to the LCD task so the LCD task can interpret\r
175 exactly what the message it just received was.  These are sent in the\r
176 cMessageID member of the message structure (defined below). */\r
177 #define mainMESSAGE_BUTTON_UP                   ( 1 )\r
178 #define mainMESSAGE_BUTTON_SEL                  ( 2 )\r
179 #define mainMESSAGE_STATUS                              ( 3 )\r
180 \r
181 /* When the cMessageID member of the message sent to the LCD task is\r
182 mainMESSAGE_STATUS then these definitions are sent in the ulMessageValue member\r
183 of the same message and indicate what the status actually is. */\r
184 #define mainERROR_DYNAMIC_TASKS                 ( pdPASS + 1 )\r
185 #define mainERROR_COM_TEST                              ( pdPASS + 2 )\r
186 #define mainERROR_GEN_QUEUE_TEST                ( pdPASS + 3 )\r
187 #define mainERROR_REG_TEST                              ( pdPASS + 4 )\r
188 \r
189 /* The length of the queue (the number of items the queue can hold) that is used\r
190 to send messages from tasks and interrupts the the LCD task. */\r
191 #define mainQUEUE_LENGTH                                ( 5 )\r
192 \r
193 /* Priorities used by the test and demo tasks. */\r
194 #define mainLCD_TASK_PRIORITY                   ( tskIDLE_PRIORITY + 1 )\r
195 #define mainCOM_TEST_PRIORITY                   ( tskIDLE_PRIORITY + 2 )\r
196 #define mainGENERIC_QUEUE_TEST_PRIORITY ( tskIDLE_PRIORITY )\r
197 \r
198 /* The LED used by the comtest tasks. See the comtest.c file for more\r
199 information.  */\r
200 #define mainCOM_TEST_LED                                ( 1 )\r
201 \r
202 /* The baud rate used by the comtest tasks described at the top of this file. */\r
203 #define mainCOM_TEST_BAUD_RATE                  ( 38400 )\r
204 \r
205 /* The maximum number of lines of text that can be displayed on the LCD. */\r
206 #define mainMAX_LCD_LINES                               ( 8 )\r
207 \r
208 /* Just used to ensure parameters are passed into tasks correctly. */\r
209 #define mainTASK_PARAMETER_CHECK_VALUE  ( ( void * ) 0xDEAD )\r
210 /*-----------------------------------------------------------*/\r
211 \r
212 /*\r
213  * The reg test tasks as described at the top of this file.\r
214  */\r
215 extern void vRegTest1Task( void *pvParameters );\r
216 extern void vRegTest2Task( void *pvParameters );\r
217 \r
218 /*\r
219  * Configures clocks, LCD, port pints, etc. necessary to execute this demo.\r
220  */\r
221 static void prvSetupHardware( void );\r
222 \r
223 /*\r
224  * Definition of the LCD/controller task described in the comments at the top\r
225  * of this file.\r
226  */\r
227 static void prvLCDTask( void *pvParameters );\r
228 \r
229 /*\r
230  * Definition of the button poll task described in the comments at the top of\r
231  * this file.\r
232  */\r
233 static void prvButtonPollTask( void *pvParameters );\r
234 \r
235 /*\r
236  * Converts a status message value into an appropriate string for display on\r
237  * the LCD.  The string is written to pcBuffer.\r
238  */\r
239 static void prvGenerateStatusMessage( char *pcBuffer, long lStatusValue );\r
240 \r
241 /*-----------------------------------------------------------*/\r
242 \r
243 /* Variables that are incremented on each iteration of the reg test tasks -\r
244 provided the tasks have not reported any errors.  The check task inspects these\r
245 variables to ensure they are still incrementing as expected.  If a variable\r
246 stops incrementing then it is likely that its associate task has stalled. */\r
247 volatile unsigned short usRegTest1Counter = 0, usRegTest2Counter = 0;\r
248 \r
249 /* The handle of the queue used to send messages from tasks and interrupts to\r
250 the LCD task. */\r
251 static xQueueHandle xLCDQueue = NULL;\r
252 \r
253 /* The definition of each message sent from tasks and interrupts to the LCD\r
254 task. */\r
255 typedef struct\r
256 {\r
257         char cMessageID;                                /* << States what the message is. */\r
258         unsigned long ulMessageValue;   /* << States the message value (can be an integer, string pointer, etc. depending on the value of cMessageID). */\r
259 } xQueueMessage;\r
260 \r
261 /*-----------------------------------------------------------*/\r
262 \r
263 /* The linker script can be used to test the FreeRTOS ports use of 20bit \r
264 addresses by locating all code in high memory.  The following pragma ensures \r
265 that main remains in low memory when that is done.  The ISR_CODE segment is used \r
266 for convenience as ISR functions are always placed in low memory. */\r
267 #pragma location="ISR_CODE"\r
268 void main( void )\r
269 {\r
270         /* Configure the peripherals used by this demo application.  This includes\r
271         configuring the joystick input select button to generate interrupts. */\r
272         prvSetupHardware();\r
273 \r
274         /* Create the queue used by tasks and interrupts to send strings to the LCD\r
275         task. */\r
276         xLCDQueue = xQueueCreate( mainQUEUE_LENGTH, sizeof( xQueueMessage ) );\r
277 \r
278         /* If the queue could not be created then don't create any tasks that might\r
279         attempt to use the queue. */\r
280         if( xLCDQueue != NULL )\r
281         {\r
282                 /* Add the created queue to the queue registry so it can be viewed in\r
283                 the IAR FreeRTOS state viewer plug-in. */\r
284                 vQueueAddToRegistry( xLCDQueue, "LCDQueue" );\r
285 \r
286                 /* Create the standard demo tasks. */\r
287                 vAltStartComTestTasks( mainCOM_TEST_PRIORITY, mainCOM_TEST_BAUD_RATE, mainCOM_TEST_LED );\r
288                 vStartDynamicPriorityTasks();\r
289                 vStartGenericQueueTasks( mainGENERIC_QUEUE_TEST_PRIORITY );\r
290                 \r
291                 /* Create the LCD, button poll and register test tasks, as described at\r
292                 the top of this file. */\r
293                 xTaskCreate( prvLCDTask, ( signed char * ) "LCD", configMINIMAL_STACK_SIZE * 2, mainTASK_PARAMETER_CHECK_VALUE, mainLCD_TASK_PRIORITY, NULL );\r
294                 xTaskCreate( prvButtonPollTask, ( signed char * ) "BPoll", configMINIMAL_STACK_SIZE, NULL, tskIDLE_PRIORITY, NULL );\r
295                 xTaskCreate( vRegTest1Task, ( signed char * ) "Reg1", configMINIMAL_STACK_SIZE, NULL, 0, NULL );\r
296                 xTaskCreate( vRegTest2Task, ( signed char * ) "Reg2", configMINIMAL_STACK_SIZE, NULL, 0, NULL );\r
297 \r
298                 /* Start the scheduler. */\r
299                 vTaskStartScheduler();\r
300         }\r
301         \r
302         /* If all is well then this line will never be reached.  If it is reached\r
303         then it is likely that there was insufficient (FreeRTOS) heap memory space\r
304         to create the idle task.  This may have been trapped by the malloc() failed\r
305         hook function, if one is configured. */ \r
306         for( ;; );\r
307 }\r
308 /*-----------------------------------------------------------*/\r
309 \r
310 static void prvLCDTask( void *pvParameters )\r
311 {\r
312 xQueueMessage xReceivedMessage;\r
313 \r
314 /* Buffer into which strings are formatted and placed ready for display on the\r
315 LCD.  Note this is a static variable to prevent it being allocated on the task\r
316 stack, which is too small to hold such a variable.  The stack size is configured\r
317 when the task is created. */\r
318 static char cBuffer[ 512 ];\r
319 unsigned char ucLine = 1;\r
320 \r
321 \r
322         /* This function is the only function that uses printf().  If printf() is\r
323         used from any other function then some sort of mutual exclusion on stdout\r
324         will be necessary.\r
325         \r
326         This is also the only function that is permitted to access the LCD.\r
327         \r
328         First print out the number of bytes that remain in the FreeRTOS heap.  This\r
329         can be viewed in the terminal IO window within the IAR Embedded Workbench. */\r
330         printf( "%d bytes of heap space remain unallocated\n", ( int ) xPortGetFreeHeapSize() );\r
331         \r
332         /* Just as a test of the port, and for no functional reason, check the task\r
333         parameter contains its expected value. */\r
334         if( pvParameters != mainTASK_PARAMETER_CHECK_VALUE )\r
335         {\r
336                 halLcdPrintLine( "Invalid parameter", ucLine,  OVERWRITE_TEXT );\r
337                 ucLine++;               \r
338         }\r
339 \r
340         for( ;; )\r
341         {\r
342                 /* Wait for a message to be received.  Using portMAX_DELAY as the block\r
343                 time will result in an indefinite wait provided INCLUDE_vTaskSuspend is\r
344                 set to 1 in FreeRTOSConfig.h, therefore there is no need to check the\r
345                 function return value and the function will only return when a value\r
346                 has been received. */\r
347                 xQueueReceive( xLCDQueue, &xReceivedMessage, portMAX_DELAY );\r
348 \r
349                 /* Clear the LCD if no room remains for any more text output. */\r
350                 if( ucLine > mainMAX_LCD_LINES )\r
351                 {\r
352                         halLcdClearScreen();\r
353                         ucLine = 0;\r
354                 }\r
355                 \r
356                 /* What is this message?  What does it contain? */\r
357                 switch( xReceivedMessage.cMessageID )\r
358                 {\r
359                         case mainMESSAGE_BUTTON_UP              :       /* The button poll task has just\r
360                                                                                                 informed this task that the up\r
361                                                                                                 button on the joystick input has\r
362                                                                                                 been pressed or released. */\r
363                                                                                                 sprintf( cBuffer, "Button up = %d", ( int ) xReceivedMessage.ulMessageValue );\r
364                                                                                                 break;\r
365 \r
366                         case mainMESSAGE_BUTTON_SEL             :       /* The select button interrupt\r
367                                                                                                 just informed this task that the\r
368                                                                                                 select button was pressed.\r
369                                                                                                 Generate a table of task run time\r
370                                                                                                 statistics and output this to\r
371                                                                                                 the terminal IO window in the IAR\r
372                                                                                                 embedded workbench. */\r
373                                                                                                 printf( "\nTask\t     Abs Time\t     %%Time\n*****************************************" );\r
374                                                                                                 vTaskGetRunTimeStats( ( signed char * ) cBuffer );\r
375                                                                                                 printf( cBuffer );\r
376                                                                                                 \r
377                                                                                                 /* Also print out a message to\r
378                                                                                                 the LCD - in this case the\r
379                                                                                                 pointer to the string to print\r
380                                                                                                 is sent directly in the\r
381                                                                                                 ulMessageValue member of the\r
382                                                                                                 message.  This just demonstrates\r
383                                                                                                 a different communication\r
384                                                                                                 technique. */\r
385                                                                                                 sprintf( cBuffer, "%s", ( char * ) xReceivedMessage.ulMessageValue );\r
386                                                                                                 break;\r
387                                                                                                 \r
388                         case mainMESSAGE_STATUS                 :       /* The tick interrupt hook\r
389                                                                                                 function has just informed this\r
390                                                                                                 task of the system status.\r
391                                                                                                 Generate a string in accordance\r
392                                                                                                 with the status value. */\r
393                                                                                                 prvGenerateStatusMessage( cBuffer, xReceivedMessage.ulMessageValue );\r
394                                                                                                 break;\r
395                                                                                                 \r
396                         default                                                 :       sprintf( cBuffer, "Unknown message" );\r
397                                                                                                 break;\r
398                 }\r
399                 \r
400                 /* Output the message that was placed into the cBuffer array within the\r
401                 switch statement above, then move onto the next line ready for the next\r
402                 message to arrive on the queue. */\r
403                 halLcdPrintLine( cBuffer, ucLine,  OVERWRITE_TEXT );\r
404                 ucLine++;\r
405         }\r
406 }\r
407 /*-----------------------------------------------------------*/\r
408 \r
409 static void prvGenerateStatusMessage( char *pcBuffer, long lStatusValue )\r
410 {\r
411         /* Just a utility function to convert a status value into a meaningful\r
412         string for output onto the LCD. */\r
413         switch( lStatusValue )\r
414         {\r
415                 case pdPASS                                             :       sprintf( pcBuffer, "Status = PASS" );\r
416                                                                                         break;\r
417                 case mainERROR_DYNAMIC_TASKS    :       sprintf( pcBuffer, "Err: Dynamic tsks" );\r
418                                                                                         break;\r
419                 case mainERROR_COM_TEST                 :       sprintf( pcBuffer, "Err: COM test" );\r
420                                                                                         break;\r
421                 case mainERROR_GEN_QUEUE_TEST   :       sprintf( pcBuffer, "Error: Gen Q test" );\r
422                                                                                         break;\r
423                 case mainERROR_REG_TEST                 :       sprintf( pcBuffer, "Error: Reg test" );\r
424                                                                                         break;\r
425                 default                                                 :       sprintf( pcBuffer, "Unknown status" );\r
426                                                                                         break;\r
427         }\r
428 }\r
429 /*-----------------------------------------------------------*/\r
430 \r
431 static void prvButtonPollTask( void *pvParameters )\r
432 {\r
433 unsigned char ucLastState = pdFALSE, ucState;\r
434 xQueueMessage xMessage;\r
435 \r
436         /* This tasks performs the button polling functionality as described at the\r
437         top of this file. */\r
438         for( ;; )\r
439         {\r
440                 /* Check the button state. */\r
441                 ucState = ( halButtonsPressed() & BUTTON_UP );\r
442                 \r
443                 if( ucState != 0 )\r
444                 {\r
445                         /* The button was pressed. */\r
446                         ucState = pdTRUE;\r
447                 }\r
448                 \r
449                 if( ucState != ucLastState )\r
450                 {\r
451                         /* The state has changed, send a message to the LCD task. */\r
452                         xMessage.cMessageID = mainMESSAGE_BUTTON_UP;\r
453                         xMessage.ulMessageValue = ( unsigned long ) ucState;\r
454                         ucLastState = ucState;\r
455                         xQueueSend( xLCDQueue, &xMessage, portMAX_DELAY );\r
456                 }\r
457                 \r
458                 /* Block for 10 milliseconds so this task does not utilise all the CPU\r
459                 time and debouncing of the button is not necessary. */\r
460                 vTaskDelay( 10 / portTICK_RATE_MS );\r
461         }\r
462 }\r
463 /*-----------------------------------------------------------*/\r
464 \r
465 static void prvSetupHardware( void )\r
466 {\r
467         halBoardInit();\r
468 \r
469         LFXT_Start( XT1DRIVE_0 );\r
470         hal430SetSystemClock( configCPU_CLOCK_HZ, configLFXT_CLOCK_HZ );\r
471 \r
472         halButtonsInit( BUTTON_ALL );\r
473         halButtonsInterruptEnable( BUTTON_SELECT );\r
474 \r
475         /* Initialise the LCD, but note that the backlight is not used as the\r
476         library function uses timer A0 to modulate the backlight, and this file\r
477         defines vApplicationSetupTimerInterrupt() to also use timer A0 to generate\r
478         the tick interrupt.  If the backlight is required, then change either the\r
479         halLCD library or vApplicationSetupTimerInterrupt() to use a different\r
480         timer.  Timer A1 is used for the run time stats time base6. */\r
481         halLcdInit();\r
482         halLcdSetContrast( 100 );\r
483         halLcdClearScreen();\r
484         \r
485         halLcdPrintLine( " www.FreeRTOS.org", 0,  OVERWRITE_TEXT );\r
486 }\r
487 /*-----------------------------------------------------------*/\r
488 \r
489 void vApplicationTickHook( void )\r
490 {\r
491 static unsigned short usLastRegTest1Counter = 0, usLastRegTest2Counter = 0;\r
492 static unsigned long ulCounter = 0;\r
493 static const unsigned long ulCheckFrequency = 5000UL / portTICK_RATE_MS;\r
494 portBASE_TYPE xHigherPriorityTaskWoken = pdFALSE;\r
495 \r
496 /* Define the status message that is sent to the LCD task.  By default the\r
497 status is PASS. */\r
498 static xQueueMessage xStatusMessage = { mainMESSAGE_STATUS, pdPASS };\r
499 \r
500         /* This is called from within the tick interrupt and performs the 'check'\r
501         functionality as described in the comments at the top of this file.\r
502 \r
503         Is it time to perform the 'check' functionality again? */\r
504         ulCounter++;\r
505         if( ulCounter >= ulCheckFrequency )\r
506         {\r
507                 /* See if the standard demo tasks are executing as expected, changing\r
508                 the message that is sent to the LCD task from PASS to an error code if\r
509                 any tasks set reports an error. */\r
510                 if( xAreComTestTasksStillRunning() != pdPASS )\r
511                 {\r
512                         xStatusMessage.ulMessageValue = mainERROR_COM_TEST;\r
513                 }\r
514 \r
515                 if( xAreDynamicPriorityTasksStillRunning() != pdPASS )\r
516                 {\r
517                         xStatusMessage.ulMessageValue = mainERROR_DYNAMIC_TASKS;\r
518                 }\r
519                 \r
520                 if( xAreGenericQueueTasksStillRunning() != pdPASS )\r
521                 {\r
522                         xStatusMessage.ulMessageValue = mainERROR_GEN_QUEUE_TEST;\r
523                 }                       \r
524 \r
525                 /* Check the reg test tasks are still cycling.  They will stop\r
526                 incrementing their loop counters if they encounter an error. */\r
527                 if( usRegTest1Counter == usLastRegTest1Counter )\r
528                 {\r
529                         xStatusMessage.ulMessageValue = mainERROR_REG_TEST;\r
530                 }\r
531 \r
532                 if( usRegTest2Counter == usLastRegTest2Counter )\r
533                 {\r
534                         xStatusMessage.ulMessageValue = mainERROR_REG_TEST;\r
535                 }\r
536 \r
537                 usLastRegTest1Counter = usRegTest1Counter;\r
538                 usLastRegTest2Counter = usRegTest2Counter;\r
539                 \r
540                 /* As this is the tick hook the lHigherPriorityTaskWoken parameter is not\r
541                 needed (a context switch is going to be performed anyway), but it must\r
542                 still be provided. */\r
543                 xQueueSendFromISR( xLCDQueue, &xStatusMessage, &xHigherPriorityTaskWoken );\r
544                 ulCounter = 0;\r
545         }\r
546 \r
547         /* Just periodically toggle an LED to show that the tick interrupt is\r
548         running.  Note that this access LED_PORT_OUT in a non-atomic way, so tasks\r
549         that access the same port must do so from a critical section. */\r
550         if( ( ulCounter & 0xff ) == 0 )\r
551         {\r
552                 if( ( LED_PORT_OUT & LED_1 ) == 0 )\r
553                 {\r
554                         LED_PORT_OUT |= LED_1;\r
555                 }\r
556                 else\r
557                 {\r
558                         LED_PORT_OUT &= ~LED_1;\r
559                 }\r
560         }\r
561 }\r
562 /*-----------------------------------------------------------*/\r
563 \r
564 #pragma vector=PORT2_VECTOR\r
565 __interrupt static void prvSelectButtonInterrupt(void)\r
566 {\r
567 /* Define the message sent to the LCD task from this interrupt. */\r
568 static const xQueueMessage xMessage = { mainMESSAGE_BUTTON_SEL, ( unsigned long ) "Select Interrupt" };\r
569 portBASE_TYPE xHigherPriorityTaskWoken = pdFALSE;\r
570 \r
571         /* This is the interrupt handler for the joystick select button input.\r
572         The button has been pushed, write a message to the LCD via the LCD task. */\r
573         xQueueSendFromISR( xLCDQueue, &xMessage, &xHigherPriorityTaskWoken );\r
574 \r
575         P2IFG = 0;\r
576         \r
577         /* If writing to xLCDQueue caused a task to unblock, and the unblocked task\r
578         has a priority equal to or above the task that this interrupt interrupted,\r
579         then lHigherPriorityTaskWoken will have been set to pdTRUE internally within\r
580         xQueuesendFromISR(), and portEND_SWITCHING_ISR() will ensure that this\r
581         interrupt returns directly to the higher priority unblocked task. */\r
582         portYIELD_FROM_ISR( xHigherPriorityTaskWoken );\r
583 }\r
584 /*-----------------------------------------------------------*/\r
585 \r
586 /* The MSP430X port uses this callback function to configure its tick interrupt.\r
587 This allows the application to choose the tick interrupt source.\r
588 configTICK_VECTOR must also be set in FreeRTOSConfig.h to the correct\r
589 interrupt vector for the chosen tick interrupt source.  This implementation of\r
590 vApplicationSetupTimerInterrupt() generates the tick from timer A0, so in this\r
591 case configTICK_VECTOR is set to TIMER0_A0_VECTOR. */\r
592 void vApplicationSetupTimerInterrupt( void )\r
593 {\r
594 const unsigned short usACLK_Frequency_Hz = 32768;\r
595 \r
596         /* Ensure the timer is stopped. */\r
597         TA0CTL = 0;\r
598 \r
599         /* Run the timer from the ACLK. */\r
600         TA0CTL = TASSEL_1;\r
601 \r
602         /* Clear everything to start with. */\r
603         TA0CTL |= TACLR;\r
604 \r
605         /* Set the compare match value according to the tick rate we want. */\r
606         TA0CCR0 = usACLK_Frequency_Hz / configTICK_RATE_HZ;\r
607 \r
608         /* Enable the interrupts. */\r
609         TA0CCTL0 = CCIE;\r
610 \r
611         /* Start up clean. */\r
612         TA0CTL |= TACLR;\r
613 \r
614         /* Up mode. */\r
615         TA0CTL |= MC_1;\r
616 }\r
617 /*-----------------------------------------------------------*/\r
618 \r
619 void vApplicationIdleHook( void )\r
620 {\r
621         /* Called on each iteration of the idle task.  In this case the idle task\r
622         just enters a low power mode. */\r
623         __bis_SR_register( LPM3_bits + GIE );\r
624 }\r
625 /*-----------------------------------------------------------*/\r
626 \r
627 void vApplicationMallocFailedHook( void )\r
628 {\r
629         /* Called if a call to pvPortMalloc() fails because there is insufficient\r
630         free memory available in the FreeRTOS heap.  pvPortMalloc() is called\r
631         internally by FreeRTOS API functions that create tasks, queues or\r
632         semaphores. */\r
633         taskDISABLE_INTERRUPTS();\r
634         for( ;; );\r
635 }\r
636 /*-----------------------------------------------------------*/\r
637 \r
638 void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )\r
639 {\r
640         ( void ) pxTask;\r
641         ( void ) pcTaskName;\r
642         \r
643         /* Run time stack overflow checking is performed if\r
644         configconfigCHECK_FOR_STACK_OVERFLOW is defined to 1 or 2.  This hook\r
645         function is called if a stack overflow is detected. */\r
646         taskDISABLE_INTERRUPTS();\r
647         for( ;; );\r
648 }\r
649 /*-----------------------------------------------------------*/\r
650 \r