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