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