]> git.sur5r.net Git - freertos/blob - Demo/msp430_GCC/main.c
Updated to V4.0.5
[freertos] / Demo / msp430_GCC / main.c
1 /*\r
2         FreeRTOS.org V4.0.5 - Copyright (C) 2003-2006 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 */\r
32 \r
33 /*\r
34  * Creates all the demo application tasks, then starts the scheduler.  The WEB\r
35  * documentation provides more details of the demo application tasks.\r
36  * \r
37  * This demo is configured to execute on the ES449 prototyping board from\r
38  * SoftBaugh. The ES449 has a built in LCD display and a single built in user\r
39  * LED.  Therefore, in place of flashing an LED, the 'flash' and 'check' tasks\r
40  * toggle '*' characters on the LCD.  The left most '*' represents LED 0, the\r
41  * next LED 1, etc.\r
42  *\r
43  * Main. c also creates a task called 'Check'.  This only executes every three \r
44  * seconds but has the highest priority so is guaranteed to get processor time.  \r
45  * Its main function is to check that all the other tasks are still operational.  \r
46  * Each task that does not flash an LED maintains a unique count that is \r
47  * incremented each time the task successfully completes its function.  Should \r
48  * any error occur within such a task the count is permanently halted.  The \r
49  * 'check' task inspects the count of each task to ensure it has changed since\r
50  * the last time the check task executed.  If all the count variables have \r
51  * changed all the tasks are still executing error free, and the check task\r
52  * toggles an LED with a three second period.  Should any task contain an error \r
53  * at any time the LED toggle rate will increase to 500ms.\r
54  *\r
55  * Please read the documentation for the MSP430 port available on\r
56  * http://www.FreeRTOS.org.\r
57  */\r
58 \r
59 /* Standard includes. */\r
60 #include <stdlib.h>\r
61 #include <signal.h>\r
62 \r
63 /* Scheduler includes. */\r
64 #include "FreeRTOS.h"\r
65 #include "task.h"\r
66 \r
67 /* Demo application includes. */\r
68 #include "partest.h"\r
69 #include "flash.h"\r
70 #include "integer.h"\r
71 #include "comtest2.h"\r
72 #include "PollQ.h"\r
73 \r
74 /* Constants required for hardware setup. */\r
75 #define mainALL_BITS_OUTPUT             ( ( unsigned portCHAR ) 0xff )\r
76 #define mainMAX_FREQUENCY               ( ( unsigned portCHAR ) 121 )\r
77 \r
78 /* Constants that define the LED's used by the various tasks. [in this case\r
79 the '*' characters on the LCD represent LED's] */\r
80 #define mainCHECK_LED                   ( 4 )\r
81 #define mainCOM_TEST_LED                ( 10 )\r
82 \r
83 /* Demo task priorities. */\r
84 #define mainCHECK_TASK_PRIORITY                 ( tskIDLE_PRIORITY + 3 )\r
85 #define mainCOM_TEST_PRIORITY                   ( tskIDLE_PRIORITY + 2 )\r
86 #define mainQUEUE_POLL_PRIORITY                 ( tskIDLE_PRIORITY + 2 )\r
87 #define mainLED_TASK_PRIORITY                   ( tskIDLE_PRIORITY + 1 )\r
88 \r
89 /* Baud rate used by the COM test tasks. */\r
90 #define mainCOM_TEST_BAUD_RATE                  ( ( unsigned portLONG ) 19200 )\r
91 \r
92 /* The frequency at which the 'Check' tasks executes.  See the comments at the \r
93 top of the page.  When the system is operating error free the 'Check' task\r
94 toggles an LED every three seconds.  If an error is discovered in any task the\r
95 rate is increased to 500 milliseconds.  [in this case the '*' characters on the \r
96 LCD represent LED's]*/\r
97 #define mainNO_ERROR_CHECK_DELAY                ( ( portTickType ) 3000 / portTICK_RATE_MS  )\r
98 #define mainERROR_CHECK_DELAY                   ( ( portTickType ) 500 / portTICK_RATE_MS  )\r
99 \r
100 /* \r
101  * The function that implements the Check task.  See the comments at the head\r
102  * of the page for implementation details.\r
103  */ \r
104 static void vErrorChecks( void *pvParameters );\r
105 \r
106 /*\r
107  * Called by the Check task.  Returns pdPASS if all the other tasks are found\r
108  * to be operating without error - otherwise returns pdFAIL.\r
109  */\r
110 static portSHORT prvCheckOtherTasksAreStillRunning( void );\r
111 \r
112 /* \r
113  * Perform the hardware setup required by the ES449 in order to run the demo\r
114  * application.\r
115  */\r
116 static void prvSetupHardware( void );\r
117 \r
118 /*-----------------------------------------------------------*/\r
119 \r
120 /*\r
121  * Start the demo application tasks - then start the real time scheduler.\r
122  */\r
123 int main( void )\r
124 {\r
125         /* Setup the hardware ready for the demo. */\r
126         prvSetupHardware();\r
127         vParTestInitialise();\r
128 \r
129         /* Start the standard demo application tasks. */\r
130         vStartLEDFlashTasks( mainLED_TASK_PRIORITY );\r
131         vStartIntegerMathTasks( tskIDLE_PRIORITY );\r
132         vAltStartComTestTasks( mainCOM_TEST_PRIORITY, mainCOM_TEST_BAUD_RATE, mainCOM_TEST_LED - 1 );\r
133         vStartPolledQueueTasks( mainQUEUE_POLL_PRIORITY );\r
134 \r
135         /* Start the 'Check' task which is defined in this file. */\r
136         xTaskCreate( vErrorChecks, "Check", configMINIMAL_STACK_SIZE, NULL, mainCHECK_TASK_PRIORITY, NULL );    \r
137 \r
138         /* Start the scheduler. */\r
139         vTaskStartScheduler();\r
140 \r
141         /* As the scheduler has been started the demo applications tasks will be\r
142         executing and we should never get here! */\r
143         return 0;\r
144 }\r
145 /*-----------------------------------------------------------*/\r
146 \r
147 static void vErrorChecks( void *pvParameters )\r
148 {\r
149 static volatile unsigned portLONG ulDummyVariable = 3UL;\r
150 portTickType xDelayPeriod = mainNO_ERROR_CHECK_DELAY;\r
151 \r
152         /* Cycle for ever, delaying then checking all the other tasks are still\r
153         operating without error. */\r
154         for( ;; )\r
155         {\r
156                 /* Wait until it is time to check again.  The time we wait here depends\r
157                 on whether an error has been detected or not.  When an error is \r
158                 detected the time is shortened resulting in a faster LED flash rate. */\r
159                 vTaskDelay( xDelayPeriod );\r
160 \r
161                 /* Perform a bit of 32bit maths to ensure the registers used by the \r
162                 integer tasks get some exercise outside of the integer tasks \r
163                 themselves. The result here is not important we are just deliberately\r
164                 changing registers used by other tasks to ensure that their context\r
165                 switch is operating as required. - see the demo application \r
166                 documentation for more info. */\r
167                 ulDummyVariable *= 3UL;\r
168                 \r
169                 /* See if the other tasks are all ok. */\r
170                 if( prvCheckOtherTasksAreStillRunning() != pdPASS )\r
171                 {\r
172                         /* An error occurred in one of the tasks so shorten the delay \r
173                         period - which has the effect of increasing the frequency of the\r
174                         LED toggle. */\r
175                         xDelayPeriod = mainERROR_CHECK_DELAY;\r
176                 }\r
177 \r
178                 /* Flash! */\r
179                 vParTestToggleLED( mainCHECK_LED );\r
180         }\r
181 }\r
182 /*-----------------------------------------------------------*/\r
183 \r
184 static portSHORT prvCheckOtherTasksAreStillRunning( void )\r
185 {\r
186 static portSHORT sNoErrorFound = pdTRUE;\r
187 \r
188         /* The demo tasks maintain a count that increments every cycle of the task\r
189         provided that the task has never encountered an error.  This function \r
190         checks the counts maintained by the tasks to ensure they are still being\r
191         incremented.  A count remaining at the same value between calls therefore\r
192         indicates that an error has been detected.  Only tasks that do not flash\r
193         an LED are checked. */\r
194 \r
195         if( xAreIntegerMathsTaskStillRunning() != pdTRUE )\r
196         {\r
197                 sNoErrorFound = pdFALSE;\r
198         }\r
199 \r
200         if( xAreComTestTasksStillRunning() != pdTRUE )\r
201         {\r
202                 sNoErrorFound = pdFALSE;\r
203         }\r
204         \r
205         if( xArePollingQueuesStillRunning() != pdTRUE )\r
206         {\r
207                 sNoErrorFound = pdFALSE;\r
208         }\r
209         \r
210         return sNoErrorFound;\r
211 }\r
212 /*-----------------------------------------------------------*/\r
213 \r
214 static void prvSetupHardware( void )\r
215 {\r
216         /* Stop the watchdog. */\r
217         WDTCTL = WDTPW + WDTHOLD;\r
218 \r
219         /* Setup DCO+ for ( xtal * D * (N + 1) ) operation. */\r
220         FLL_CTL0 |= DCOPLUS + XCAP18PF; \r
221 \r
222         /* X2 DCO frequency, 8MHz nominal DCO */\r
223         SCFI0 |= FN_4;                  \r
224 \r
225         /* (121+1) x 32768 x 2 = 7.99 Mhz */\r
226         SCFQCTL = mainMAX_FREQUENCY;\r
227 \r
228         /* Setup the IO as per the SoftBaugh demo for the same target hardware. */\r
229         P1SEL = 0x32;\r
230         P2SEL = 0x00;\r
231         P3SEL = 0x00;\r
232         P4SEL = 0xFC;\r
233         P5SEL = 0xFF;\r
234 }\r
235 /*-----------------------------------------------------------*/\r
236 \r
237 \r
238 \r
239 \r
240 \r
241 \r
242 \r