]> git.sur5r.net Git - freertos/blob - Demo/msp430_IAR/main.c
Add MSP430/IAR demo project.
[freertos] / Demo / msp430_IAR / main.c
1 /*\r
2         FreeRTOS.org V5.1.0 - Copyright (C) 2003-2008 Richard Barry.\r
3 \r
4         This file is part of the FreeRTOS.org distribution.\r
5 \r
6         FreeRTOS.org is free software; you can redistribute it and/or modify\r
7         it under the terms of the GNU General Public License as published by\r
8         the Free Software Foundation; either version 2 of the License, or\r
9         (at your option) any later version.\r
10 \r
11         FreeRTOS.org is distributed in the hope that it will be useful,\r
12         but WITHOUT ANY WARRANTY; without even the implied warranty of\r
13         MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
14         GNU General Public License for more details.\r
15 \r
16         You should have received a copy of the GNU General Public License\r
17         along with FreeRTOS.org; if not, write to the Free Software\r
18         Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA\r
19 \r
20         A special exception to the GPL can be applied should you wish to distribute\r
21         a combined work that includes FreeRTOS.org, without being obliged to provide\r
22         the source code for any proprietary components.  See the licensing section\r
23         of http://www.FreeRTOS.org for full details of how and when the exception\r
24         can be applied.\r
25 \r
26     ***************************************************************************\r
27     ***************************************************************************\r
28     *                                                                         *\r
29     * SAVE TIME AND MONEY!  We can port FreeRTOS.org to your own hardware,    *\r
30     * and even write all or part of your application on your behalf.          *\r
31     * See http://www.OpenRTOS.com for details of the services we provide to   *\r
32     * expedite your project.                                                  *\r
33     *                                                                         *\r
34     ***************************************************************************\r
35     ***************************************************************************\r
36 \r
37         Please ensure to read the configuration and relevant port sections of the\r
38         online documentation.\r
39 \r
40         http://www.FreeRTOS.org - Documentation, latest information, license and\r
41         contact details.\r
42 \r
43         http://www.SafeRTOS.com - A version that is certified for use in safety\r
44         critical systems.\r
45 \r
46         http://www.OpenRTOS.com - Commercial support, development, porting,\r
47         licensing and training services.\r
48 */\r
49 \r
50 /*\r
51  * Creates all the demo application tasks, then starts the scheduler.  The WEB\r
52  * documentation provides more details of the demo application tasks.\r
53  *\r
54  * This demo is configured to execute on the ES449 prototyping board from\r
55  * SoftBaugh. The ES449 has a built in LCD display and a single built in user\r
56  * LED.  Therefore, in place of flashing an LED, the 'flash' and 'check' tasks\r
57  * toggle '*' characters on the LCD.  The left most '*' represents LED 0, the\r
58  * next LED 1, etc.\r
59  *\r
60  * Main. c also creates a task called 'Check'.  This only executes every three\r
61  * seconds but has the highest priority so is guaranteed to get processor time.\r
62  * Its main function is to check that all the other tasks are still operational.\r
63  * Each task that does not flash an LED maintains a unique count that is\r
64  * incremented each time the task successfully completes its function.  Should\r
65  * any error occur within such a task the count is permanently halted.  The\r
66  * 'check' task inspects the count of each task to ensure it has changed since\r
67  * the last time the check task executed.  If all the count variables have\r
68  * changed all the tasks are still executing error free, and the check task\r
69  * toggles an LED with a three second period.  Should any task contain an error\r
70  * at any time the LED toggle rate will increase to 500ms.\r
71  *\r
72  * Please read the documentation for the MSP430 port available on\r
73  * http://www.FreeRTOS.org.\r
74  */\r
75 \r
76 /* Standard includes. */\r
77 #include <stdlib.h>\r
78 \r
79 /* Scheduler includes. */\r
80 #include "FreeRTOS.h"\r
81 #include "task.h"\r
82 \r
83 /* Demo application includes. */\r
84 #include "partest.h"\r
85 #include "flash.h"\r
86 #include "integer.h"\r
87 #include "comtest2.h"\r
88 #include "PollQ.h"\r
89 \r
90 /* Constants required for hardware setup. */\r
91 #define mainALL_BITS_OUTPUT             ( ( unsigned portCHAR ) 0xff )\r
92 #define mainMAX_FREQUENCY               ( ( unsigned portCHAR ) 121 )\r
93 \r
94 /* Constants that define the LED's used by the various tasks. [in this case\r
95 the '*' characters on the LCD represent LED's] */\r
96 #define mainCHECK_LED                   ( 4 )\r
97 #define mainCOM_TEST_LED                ( 10 )\r
98 \r
99 /* Demo task priorities. */\r
100 #define mainCHECK_TASK_PRIORITY                 ( tskIDLE_PRIORITY + 3 )\r
101 #define mainCOM_TEST_PRIORITY                   ( tskIDLE_PRIORITY + 2 )\r
102 #define mainQUEUE_POLL_PRIORITY                 ( tskIDLE_PRIORITY + 2 )\r
103 #define mainLED_TASK_PRIORITY                   ( tskIDLE_PRIORITY + 1 )\r
104 \r
105 /* Baud rate used by the COM test tasks. */\r
106 #define mainCOM_TEST_BAUD_RATE                  ( ( unsigned portLONG ) 19200 )\r
107 \r
108 /* The frequency at which the 'Check' tasks executes.  See the comments at the\r
109 top of the page.  When the system is operating error free the 'Check' task\r
110 toggles an LED every three seconds.  If an error is discovered in any task the\r
111 rate is increased to 500 milliseconds.  [in this case the '*' characters on the\r
112 LCD represent LED's]*/\r
113 #define mainNO_ERROR_CHECK_DELAY                ( ( portTickType ) 3000 / portTICK_RATE_MS  )\r
114 #define mainERROR_CHECK_DELAY                   ( ( portTickType ) 500 / portTICK_RATE_MS  )\r
115 \r
116 /* The constants used in the calculation. */\r
117 #define intgCONST1                              ( ( portLONG ) 123 )\r
118 #define intgCONST2                              ( ( portLONG ) 234567 )\r
119 #define intgCONST3                              ( ( portLONG ) -3 )\r
120 #define intgCONST4                              ( ( portLONG ) 7 )\r
121 #define intgEXPECTED_ANSWER             ( ( ( intgCONST1 + intgCONST2 ) * intgCONST3 ) / intgCONST4 )\r
122 \r
123 /*\r
124  * The function that implements the Check task.  See the comments at the head\r
125  * of the page for implementation details.\r
126  */\r
127 static void vErrorChecks( void *pvParameters );\r
128 \r
129 /*\r
130  * Called by the Check task.  Returns pdPASS if all the other tasks are found\r
131  * to be operating without error - otherwise returns pdFAIL.\r
132  */\r
133 static portSHORT prvCheckOtherTasksAreStillRunning( void );\r
134 \r
135 /*\r
136  * Perform the hardware setup required by the ES449 in order to run the demo\r
137  * application.\r
138  */\r
139 static void prvSetupHardware( void );\r
140 \r
141 \r
142 portBASE_TYPE xLocalError = pdFALSE;\r
143 volatile unsigned portLONG ulIdleLoops = 0UL;\r
144 \r
145 /*-----------------------------------------------------------*/\r
146 \r
147 /*\r
148  * Start the demo application tasks - then start the real time scheduler.\r
149  */\r
150 int main( void )\r
151 {\r
152         /* Setup the hardware ready for the demo. */\r
153         prvSetupHardware();\r
154         vParTestInitialise();\r
155 \r
156         /* Start the standard demo application tasks. */\r
157         vStartLEDFlashTasks( mainLED_TASK_PRIORITY );\r
158         vStartIntegerMathTasks( tskIDLE_PRIORITY );\r
159         vAltStartComTestTasks( mainCOM_TEST_PRIORITY, mainCOM_TEST_BAUD_RATE, mainCOM_TEST_LED - 1 );\r
160         vStartPolledQueueTasks( mainQUEUE_POLL_PRIORITY );\r
161 \r
162         /* Start the 'Check' task which is defined in this file. */\r
163         xTaskCreate( vErrorChecks, ( const signed portCHAR * const ) "Check", configMINIMAL_STACK_SIZE, NULL, mainCHECK_TASK_PRIORITY, NULL );  \r
164 \r
165         /* Start the scheduler. */\r
166         vTaskStartScheduler();\r
167 \r
168         /* As the scheduler has been started the demo applications tasks will be\r
169         executing and we should never get here! */\r
170         return 0;\r
171 }\r
172 /*-----------------------------------------------------------*/\r
173 \r
174 static portTASK_FUNCTION( vErrorChecks, pvParameters )\r
175 {\r
176 portTickType xDelayPeriod = mainNO_ERROR_CHECK_DELAY;\r
177 \r
178         /* Cycle for ever, delaying then checking all the other tasks are still\r
179         operating without error. */\r
180         for( ;; )\r
181         {\r
182                 /* Wait until it is time to check again.  The time we wait here depends\r
183                 on whether an error has been detected or not.  When an error is\r
184                 detected the time is shortened resulting in a faster LED flash rate. */\r
185                 vTaskDelay( xDelayPeriod );\r
186 \r
187                 /* See if the other tasks are all ok. */\r
188                 if( prvCheckOtherTasksAreStillRunning() != pdPASS )\r
189                 {\r
190                         /* An error occurred in one of the tasks so shorten the delay\r
191                         period - which has the effect of increasing the frequency of the\r
192                         LED toggle. */\r
193                         xDelayPeriod = mainERROR_CHECK_DELAY;\r
194                 }\r
195 \r
196                 /* Flash! */\r
197                 vParTestToggleLED( mainCHECK_LED );\r
198         }\r
199 }\r
200 /*-----------------------------------------------------------*/\r
201 \r
202 static portSHORT prvCheckOtherTasksAreStillRunning( void )\r
203 {\r
204 static portSHORT sNoErrorFound = pdTRUE;\r
205 static unsigned portLONG ulLastIdleLoopCount = 0UL;\r
206 \r
207         /* The demo tasks maintain a count that increments every cycle of the task\r
208         provided that the task has never encountered an error.  This function\r
209         checks the counts maintained by the tasks to ensure they are still being\r
210         incremented.  A count remaining at the same value between calls therefore\r
211         indicates that an error has been detected.  Only tasks that do not flash\r
212         an LED are checked. */\r
213 \r
214         if( xAreIntegerMathsTaskStillRunning() != pdTRUE )\r
215         {\r
216                 sNoErrorFound = pdFALSE;\r
217         }\r
218 \r
219         if( xAreComTestTasksStillRunning() != pdTRUE )\r
220         {\r
221                 sNoErrorFound = pdFALSE;\r
222         }\r
223 \r
224         if( xArePollingQueuesStillRunning() != pdTRUE )\r
225         {\r
226                 sNoErrorFound = pdFALSE;\r
227         }\r
228 \r
229         if( xLocalError == pdTRUE )\r
230         {\r
231                 sNoErrorFound = pdFALSE;\r
232         }\r
233 \r
234     if( ulIdleLoops == ulLastIdleLoopCount )\r
235     {\r
236         sNoErrorFound = pdFALSE;\r
237     }\r
238     else\r
239     {\r
240         ulLastIdleLoopCount = ulIdleLoops;\r
241     }\r
242         \r
243         return sNoErrorFound;\r
244 }\r
245 /*-----------------------------------------------------------*/\r
246 \r
247 static void prvSetupHardware( void )\r
248 {\r
249         /* Stop the watchdog. */\r
250         WDTCTL = WDTPW + WDTHOLD;\r
251 \r
252         /* Setup DCO+ for ( xtal * D * (N + 1) ) operation. */\r
253         FLL_CTL0 |= DCOPLUS + XCAP18PF;\r
254 \r
255         /* X2 DCO frequency, 8MHz nominal DCO */\r
256         SCFI0 |= FN_4;\r
257 \r
258         /* (121+1) x 32768 x 2 = 7.99 Mhz */\r
259         SCFQCTL = mainMAX_FREQUENCY;\r
260 \r
261         /* Setup the IO.  This is just copied from the demo supplied by SoftBaugh\r
262          for the ES449 demo board. */\r
263         P1SEL = 0x32;\r
264         P2SEL = 0x00;\r
265         P3SEL = 0x00;\r
266         P4SEL = 0xFC;\r
267         P5SEL = 0xFF;\r
268 }\r
269 /*-----------------------------------------------------------*/\r
270 \r
271 /* The idle hook is just a copy of the standard integer maths tasks.  See\r
272 Demo/Common/integer.c for rationale. */\r
273 \r
274 void vApplicationIdleHook( void )\r
275 {\r
276 /* These variables are all effectively set to constants so they are volatile to\r
277 ensure the compiler does not just get rid of them. */\r
278 volatile portLONG lValue;\r
279 \r
280         /* Keep performing a calculation and checking the result against a constant. */\r
281         for( ;; )\r
282         {\r
283                 /* Perform the calculation.  This will store partial value in\r
284                 registers, resulting in a good test of the context switch mechanism. */\r
285                 lValue = intgCONST1;\r
286                 lValue += intgCONST2;\r
287 \r
288                 /* Yield in case cooperative scheduling is being used. */\r
289                 #if configUSE_PREEMPTION == 0\r
290                 {\r
291                         taskYIELD();\r
292                 }\r
293                 #endif\r
294 \r
295                 /* Finish off the calculation. */\r
296                 lValue *= intgCONST3;\r
297                 lValue /= intgCONST4;\r
298 \r
299                 /* If the calculation is found to be incorrect we stop setting the\r
300                 TaskHasExecuted variable so the check task can see an error has\r
301                 occurred. */\r
302                 if( lValue != intgEXPECTED_ANSWER ) /*lint !e774 volatile used to prevent this being optimised out. */\r
303                 {\r
304                         /* Don't bother with mutual exclusion - it is only read from the\r
305                         check task and never written. */\r
306                         xLocalError = pdTRUE;\r
307                 }\r
308                 /* Yield in case cooperative scheduling is being used. */\r
309                 #if configUSE_PREEMPTION == 0\r
310                 {\r
311                         taskYIELD();\r
312                 }\r
313                 #endif\r
314 \r
315         ulIdleLoops++;\r
316 \r
317         /* Place the processor into low power mode. */\r
318         LPM3;\r
319         }\r
320 }\r
321 \r
322 \r
323 \r
324 \r
325 \r
326 \r