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