]> git.sur5r.net Git - freertos/blob - Demo/msp430_GCC/main.c
41972325c6769e2b20aecf69d54e2eb1fe732799
[freertos] / Demo / msp430_GCC / main.c
1 /*\r
2         FreeRTOS V5.4.2 - Copyright (C) 2009 Real Time Engineers Ltd.\r
3 \r
4         This file is part of the FreeRTOS distribution.\r
5 \r
6         FreeRTOS is free software; you can redistribute it and/or modify it     under \r
7         the terms of the GNU General Public License (version 2) as published by the \r
8         Free Software Foundation and modified by the FreeRTOS exception.\r
9         **NOTE** The exception to the GPL is included to allow you to distribute a\r
10         combined work that includes FreeRTOS without being obliged to provide the \r
11         source code for proprietary components outside of the FreeRTOS kernel.  \r
12         Alternative commercial license and support terms are also available upon \r
13         request.  See the licensing section of http://www.FreeRTOS.org for full \r
14         license details.\r
15 \r
16         FreeRTOS is distributed in the hope that it will be useful,     but WITHOUT\r
17         ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or\r
18         FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for\r
19         more details.\r
20 \r
21         You should have received a copy of the GNU General Public License along\r
22         with FreeRTOS; if not, write to the Free Software Foundation, Inc., 59\r
23         Temple Place, Suite 330, Boston, MA  02111-1307  USA.\r
24 \r
25 \r
26         ***************************************************************************\r
27         *                                                                         *\r
28         * Looking for a quick start?  Then check out the FreeRTOS eBook!          *\r
29         * See http://www.FreeRTOS.org/Documentation for details                   *\r
30         *                                                                         *\r
31         ***************************************************************************\r
32 \r
33         1 tab == 4 spaces!\r
34 \r
35         Please ensure to read the configuration and relevant port sections of the\r
36         online documentation.\r
37 \r
38         http://www.FreeRTOS.org - Documentation, latest information, license and\r
39         contact details.\r
40 \r
41         http://www.SafeRTOS.com - A version that is certified for use in safety\r
42         critical systems.\r
43 \r
44         http://www.OpenRTOS.com - Commercial support, development, porting,\r
45         licensing and training services.\r
46 */\r
47 \r
48 /*\r
49  * Creates all the demo application tasks, then starts the scheduler.  The WEB\r
50  * documentation provides more details of the demo application tasks.\r
51  * \r
52  * This demo is configured to execute on the ES449 prototyping board from\r
53  * SoftBaugh. The ES449 has a built in LCD display and a single built in user\r
54  * LED.  Therefore, in place of flashing an LED, the 'flash' and 'check' tasks\r
55  * toggle '*' characters on the LCD.  The left most '*' represents LED 0, the\r
56  * next LED 1, etc.\r
57  *\r
58  * Main. c also creates a task called 'Check'.  This only executes every three \r
59  * seconds but has the highest priority so is guaranteed to get processor time.  \r
60  * Its main function is to check that all the other tasks are still operational.  \r
61  * Each task that does not flash an LED maintains a unique count that is \r
62  * incremented each time the task successfully completes its function.  Should \r
63  * any error occur within such a task the count is permanently halted.  The \r
64  * 'check' task inspects the count of each task to ensure it has changed since\r
65  * the last time the check task executed.  If all the count variables have \r
66  * changed all the tasks are still executing error free, and the check task\r
67  * toggles an LED with a three second period.  Should any task contain an error \r
68  * at any time the LED toggle rate will increase to 500ms.\r
69  *\r
70  * Please read the documentation for the MSP430 port available on\r
71  * http://www.FreeRTOS.org.\r
72  */\r
73 \r
74 /* Standard includes. */\r
75 #include <stdlib.h>\r
76 #include <signal.h>\r
77 \r
78 /* Scheduler includes. */\r
79 #include "FreeRTOS.h"\r
80 #include "task.h"\r
81 \r
82 /* Demo application includes. */\r
83 #include "partest.h"\r
84 #include "flash.h"\r
85 #include "integer.h"\r
86 #include "comtest2.h"\r
87 #include "PollQ.h"\r
88 \r
89 /* Constants required for hardware setup. */\r
90 #define mainALL_BITS_OUTPUT             ( ( unsigned portCHAR ) 0xff )\r
91 #define mainMAX_FREQUENCY               ( ( unsigned portCHAR ) 121 )\r
92 \r
93 /* Constants that define the LED's used by the various tasks. [in this case\r
94 the '*' characters on the LCD represent LED's] */\r
95 #define mainCHECK_LED                   ( 4 )\r
96 #define mainCOM_TEST_LED                ( 10 )\r
97 \r
98 /* Demo task priorities. */\r
99 #define mainCHECK_TASK_PRIORITY                 ( tskIDLE_PRIORITY + 3 )\r
100 #define mainCOM_TEST_PRIORITY                   ( tskIDLE_PRIORITY + 2 )\r
101 #define mainQUEUE_POLL_PRIORITY                 ( tskIDLE_PRIORITY + 2 )\r
102 #define mainLED_TASK_PRIORITY                   ( tskIDLE_PRIORITY + 1 )\r
103 \r
104 /* Baud rate used by the COM test tasks. */\r
105 #define mainCOM_TEST_BAUD_RATE                  ( ( unsigned portLONG ) 19200 )\r
106 \r
107 /* The frequency at which the 'Check' tasks executes.  See the comments at the \r
108 top of the page.  When the system is operating error free the 'Check' task\r
109 toggles an LED every three seconds.  If an error is discovered in any task the\r
110 rate is increased to 500 milliseconds.  [in this case the '*' characters on the \r
111 LCD represent LED's]*/\r
112 #define mainNO_ERROR_CHECK_DELAY                ( ( portTickType ) 3000 / portTICK_RATE_MS  )\r
113 #define mainERROR_CHECK_DELAY                   ( ( portTickType ) 500 / portTICK_RATE_MS  )\r
114 \r
115 /* \r
116  * The function that implements the Check task.  See the comments at the head\r
117  * of the page for implementation details.\r
118  */ \r
119 static void vErrorChecks( void *pvParameters );\r
120 \r
121 /*\r
122  * Called by the Check task.  Returns pdPASS if all the other tasks are found\r
123  * to be operating without error - otherwise returns pdFAIL.\r
124  */\r
125 static portSHORT prvCheckOtherTasksAreStillRunning( void );\r
126 \r
127 /* \r
128  * Perform the hardware setup required by the ES449 in order to run the demo\r
129  * application.\r
130  */\r
131 static void prvSetupHardware( void );\r
132 \r
133 /* Used to detect the idle hook function stalling. */\r
134 static volatile unsigned portLONG ulIdleLoops = 0UL;\r
135 \r
136 /*-----------------------------------------------------------*/\r
137 \r
138 /*\r
139  * Start the demo application tasks - then start the real time scheduler.\r
140  */\r
141 int main( void )\r
142 {\r
143         /* Setup the hardware ready for the demo. */\r
144         prvSetupHardware();\r
145         vParTestInitialise();\r
146 \r
147         /* Start the standard demo application tasks. */\r
148         vStartLEDFlashTasks( mainLED_TASK_PRIORITY );\r
149         vStartIntegerMathTasks( tskIDLE_PRIORITY );\r
150         vAltStartComTestTasks( mainCOM_TEST_PRIORITY, mainCOM_TEST_BAUD_RATE, mainCOM_TEST_LED - 1 );\r
151         vStartPolledQueueTasks( mainQUEUE_POLL_PRIORITY );\r
152 \r
153         /* Start the 'Check' task which is defined in this file. */\r
154         xTaskCreate( vErrorChecks, "Check", configMINIMAL_STACK_SIZE, NULL, mainCHECK_TASK_PRIORITY, NULL );    \r
155 \r
156         /* Start the scheduler. */\r
157         vTaskStartScheduler();\r
158 \r
159         /* As the scheduler has been started the demo applications tasks will be\r
160         executing and we should never get here! */\r
161         return 0;\r
162 }\r
163 /*-----------------------------------------------------------*/\r
164 \r
165 static void vErrorChecks( void *pvParameters )\r
166 {\r
167 static volatile unsigned portLONG ulDummyVariable = 3UL;\r
168 portTickType xDelayPeriod = mainNO_ERROR_CHECK_DELAY;\r
169 \r
170         /* Cycle for ever, delaying then checking all the other tasks are still\r
171         operating without error. */\r
172         for( ;; )\r
173         {\r
174                 /* Wait until it is time to check again.  The time we wait here depends\r
175                 on whether an error has been detected or not.  When an error is \r
176                 detected the time is shortened resulting in a faster LED flash rate. */\r
177                 vTaskDelay( xDelayPeriod );\r
178 \r
179                 /* Perform a bit of 32bit maths to ensure the registers used by the \r
180                 integer tasks get some exercise outside of the integer tasks \r
181                 themselves. The result here is not important we are just deliberately\r
182                 changing registers used by other tasks to ensure that their context\r
183                 switch is operating as required. - see the demo application \r
184                 documentation for more info. */\r
185                 ulDummyVariable *= 3UL;\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 ulLastIdleLoops = 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( ulLastIdleLoops == ulIdleLoops )\r
230         {\r
231                 sNoErrorFound = pdFALSE;\r
232         }\r
233 \r
234         ulLastIdleLoops = ulIdleLoops;\r
235         \r
236         return sNoErrorFound;\r
237 }\r
238 /*-----------------------------------------------------------*/\r
239 \r
240 static void prvSetupHardware( void )\r
241 {\r
242         /* Stop the watchdog. */\r
243         WDTCTL = WDTPW + WDTHOLD;\r
244 \r
245         /* Setup DCO+ for ( xtal * D * (N + 1) ) operation. */\r
246         FLL_CTL0 |= DCOPLUS + XCAP18PF; \r
247 \r
248         /* X2 DCO frequency, 8MHz nominal DCO */\r
249         SCFI0 |= FN_4;                  \r
250 \r
251         /* (121+1) x 32768 x 2 = 7.99 Mhz */\r
252         SCFQCTL = mainMAX_FREQUENCY;\r
253 \r
254         /* Setup the IO as per the SoftBaugh demo for the same target hardware. */\r
255         P1SEL = 0x32;\r
256         P2SEL = 0x00;\r
257         P3SEL = 0x00;\r
258         P4SEL = 0xFC;\r
259         P5SEL = 0xFF;\r
260 }\r
261 /*-----------------------------------------------------------*/\r
262 \r
263 void vApplicationIdleHook( void );\r
264 void vApplicationIdleHook( void )\r
265 {\r
266         /* Simple put the CPU into lowpower mode. */\r
267         _BIS_SR( LPM3_bits );\r
268         ulIdleLoops++;\r
269 }\r
270 /*-----------------------------------------------------------*/\r
271 \r
272 \r
273 \r
274 \r
275 \r
276 \r
277 \r