]> git.sur5r.net Git - freertos/blob - FreeRTOS/Demo/msp430_GCC/main.c
Update version number to 9.0.0rc2.
[freertos] / FreeRTOS / Demo / msp430_GCC / main.c
1 /*\r
2     FreeRTOS V9.0.0rc2 - Copyright (C) 2016 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     This file is part of the FreeRTOS distribution.\r
8 \r
9     FreeRTOS is free software; you can redistribute it and/or modify it under\r
10     the terms of the GNU General Public License (version 2) as published by the\r
11     Free Software Foundation >>>> AND MODIFIED BY <<<< the FreeRTOS exception.\r
12 \r
13     ***************************************************************************\r
14     >>!   NOTE: The modification to the GPL is included to allow you to     !<<\r
15     >>!   distribute a combined work that includes FreeRTOS without being   !<<\r
16     >>!   obliged to provide the source code for proprietary components     !<<\r
17     >>!   outside of the FreeRTOS kernel.                                   !<<\r
18     ***************************************************************************\r
19 \r
20     FreeRTOS is distributed in the hope that it will be useful, but WITHOUT ANY\r
21     WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS\r
22     FOR A PARTICULAR PURPOSE.  Full license text is available on the following\r
23     link: http://www.freertos.org/a00114.html\r
24 \r
25     ***************************************************************************\r
26      *                                                                       *\r
27      *    FreeRTOS provides completely free yet professionally developed,    *\r
28      *    robust, strictly quality controlled, supported, and cross          *\r
29      *    platform software that is more than just the market leader, it     *\r
30      *    is the industry's de facto standard.                               *\r
31      *                                                                       *\r
32      *    Help yourself get started quickly while simultaneously helping     *\r
33      *    to support the FreeRTOS project by purchasing a FreeRTOS           *\r
34      *    tutorial book, reference manual, or both:                          *\r
35      *    http://www.FreeRTOS.org/Documentation                              *\r
36      *                                                                       *\r
37     ***************************************************************************\r
38 \r
39     http://www.FreeRTOS.org/FAQHelp.html - Having a problem?  Start by reading\r
40     the FAQ page "My application does not run, what could be wrong?".  Have you\r
41     defined configASSERT()?\r
42 \r
43     http://www.FreeRTOS.org/support - In return for receiving this top quality\r
44     embedded software for free we request you assist our global community by\r
45     participating in the support forum.\r
46 \r
47     http://www.FreeRTOS.org/training - Investing in training allows your team to\r
48     be as productive as possible as early as possible.  Now you can receive\r
49     FreeRTOS training directly from Richard Barry, CEO of Real Time Engineers\r
50     Ltd, and the world's leading authority on the world's leading RTOS.\r
51 \r
52     http://www.FreeRTOS.org/plus - A selection of FreeRTOS ecosystem products,\r
53     including FreeRTOS+Trace - an indispensable productivity tool, a DOS\r
54     compatible FAT file system, and our tiny thread aware UDP/IP stack.\r
55 \r
56     http://www.FreeRTOS.org/labs - Where new FreeRTOS products go to incubate.\r
57     Come and try FreeRTOS+TCP, our new open source TCP/IP stack for FreeRTOS.\r
58 \r
59     http://www.OpenRTOS.com - Real Time Engineers ltd. license FreeRTOS to High\r
60     Integrity Systems ltd. to sell under the OpenRTOS brand.  Low cost OpenRTOS\r
61     licenses offer ticketed support, indemnification and commercial middleware.\r
62 \r
63     http://www.SafeRTOS.com - High Integrity Systems also provide a safety\r
64     engineered and independently SIL3 certified version for use in safety and\r
65     mission critical applications that require provable dependability.\r
66 \r
67     1 tab == 4 spaces!\r
68 */\r
69 \r
70 /*\r
71  * Creates all the demo application tasks, then starts the scheduler.  The WEB\r
72  * documentation provides more details of the demo application tasks.\r
73  * \r
74  * This demo is configured to execute on the ES449 prototyping board from\r
75  * SoftBaugh. The ES449 has a built in LCD display and a single built in user\r
76  * LED.  Therefore, in place of flashing an LED, the 'flash' and 'check' tasks\r
77  * toggle '*' characters on the LCD.  The left most '*' represents LED 0, the\r
78  * next LED 1, etc.\r
79  *\r
80  * Main. c also creates a task called 'Check'.  This only executes every three \r
81  * seconds but has the highest priority so is guaranteed to get processor time.  \r
82  * Its main function is to check that all the other tasks are still operational.  \r
83  * Each task that does not flash an LED maintains a unique count that is \r
84  * incremented each time the task successfully completes its function.  Should \r
85  * any error occur within such a task the count is permanently halted.  The \r
86  * 'check' task inspects the count of each task to ensure it has changed since\r
87  * the last time the check task executed.  If all the count variables have \r
88  * changed all the tasks are still executing error free, and the check task\r
89  * toggles an LED with a three second period.  Should any task contain an error \r
90  * at any time the LED toggle rate will increase to 500ms.\r
91  *\r
92  * Please read the documentation for the MSP430 port available on\r
93  * http://www.FreeRTOS.org.\r
94  */\r
95 \r
96 /* Standard includes. */\r
97 #include <stdlib.h>\r
98 #include <signal.h>\r
99 \r
100 /* Scheduler includes. */\r
101 #include "FreeRTOS.h"\r
102 #include "task.h"\r
103 \r
104 /* Demo application includes. */\r
105 #include "partest.h"\r
106 #include "flash.h"\r
107 #include "integer.h"\r
108 #include "comtest2.h"\r
109 #include "PollQ.h"\r
110 \r
111 /* Constants required for hardware setup. */\r
112 #define mainALL_BITS_OUTPUT             ( ( unsigned char ) 0xff )\r
113 #define mainMAX_FREQUENCY               ( ( unsigned char ) 121 )\r
114 \r
115 /* Constants that define the LED's used by the various tasks. [in this case\r
116 the '*' characters on the LCD represent LED's] */\r
117 #define mainCHECK_LED                   ( 4 )\r
118 #define mainCOM_TEST_LED                ( 10 )\r
119 \r
120 /* Demo task priorities. */\r
121 #define mainCHECK_TASK_PRIORITY                 ( tskIDLE_PRIORITY + 3 )\r
122 #define mainCOM_TEST_PRIORITY                   ( tskIDLE_PRIORITY + 2 )\r
123 #define mainQUEUE_POLL_PRIORITY                 ( tskIDLE_PRIORITY + 2 )\r
124 #define mainLED_TASK_PRIORITY                   ( tskIDLE_PRIORITY + 1 )\r
125 \r
126 /* Baud rate used by the COM test tasks. */\r
127 #define mainCOM_TEST_BAUD_RATE                  ( ( unsigned long ) 19200 )\r
128 \r
129 /* The frequency at which the 'Check' tasks executes.  See the comments at the \r
130 top of the page.  When the system is operating error free the 'Check' task\r
131 toggles an LED every three seconds.  If an error is discovered in any task the\r
132 rate is increased to 500 milliseconds.  [in this case the '*' characters on the \r
133 LCD represent LED's]*/\r
134 #define mainNO_ERROR_CHECK_DELAY                ( ( TickType_t ) 3000 / portTICK_PERIOD_MS  )\r
135 #define mainERROR_CHECK_DELAY                   ( ( TickType_t ) 500 / portTICK_PERIOD_MS  )\r
136 \r
137 /* \r
138  * The function that implements the Check task.  See the comments at the head\r
139  * of the page for implementation details.\r
140  */ \r
141 static void vErrorChecks( void *pvParameters );\r
142 \r
143 /*\r
144  * Called by the Check task.  Returns pdPASS if all the other tasks are found\r
145  * to be operating without error - otherwise returns pdFAIL.\r
146  */\r
147 static short prvCheckOtherTasksAreStillRunning( void );\r
148 \r
149 /* \r
150  * Perform the hardware setup required by the ES449 in order to run the demo\r
151  * application.\r
152  */\r
153 static void prvSetupHardware( void );\r
154 \r
155 /* Used to detect the idle hook function stalling. */\r
156 static volatile unsigned long ulIdleLoops = 0UL;\r
157 \r
158 /*-----------------------------------------------------------*/\r
159 \r
160 /*\r
161  * Start the demo application tasks - then start the real time scheduler.\r
162  */\r
163 int main( void )\r
164 {\r
165         /* Setup the hardware ready for the demo. */\r
166         prvSetupHardware();\r
167         vParTestInitialise();\r
168 \r
169         /* Start the standard demo application tasks. */\r
170         vStartLEDFlashTasks( mainLED_TASK_PRIORITY );\r
171         vStartIntegerMathTasks( tskIDLE_PRIORITY );\r
172         vAltStartComTestTasks( mainCOM_TEST_PRIORITY, mainCOM_TEST_BAUD_RATE, mainCOM_TEST_LED - 1 );\r
173         vStartPolledQueueTasks( mainQUEUE_POLL_PRIORITY );\r
174 \r
175         /* Start the 'Check' task which is defined in this file. */\r
176         xTaskCreate( vErrorChecks, "Check", configMINIMAL_STACK_SIZE, NULL, mainCHECK_TASK_PRIORITY, NULL );    \r
177 \r
178         /* Start the scheduler. */\r
179         vTaskStartScheduler();\r
180 \r
181         /* As the scheduler has been started the demo applications tasks will be\r
182         executing and we should never get here! */\r
183         return 0;\r
184 }\r
185 /*-----------------------------------------------------------*/\r
186 \r
187 static void vErrorChecks( void *pvParameters )\r
188 {\r
189 static volatile unsigned long ulDummyVariable = 3UL;\r
190 TickType_t xDelayPeriod = mainNO_ERROR_CHECK_DELAY;\r
191 \r
192         /* Cycle for ever, delaying then checking all the other tasks are still\r
193         operating without error. */\r
194         for( ;; )\r
195         {\r
196                 /* Wait until it is time to check again.  The time we wait here depends\r
197                 on whether an error has been detected or not.  When an error is \r
198                 detected the time is shortened resulting in a faster LED flash rate. */\r
199                 vTaskDelay( xDelayPeriod );\r
200 \r
201                 /* Perform a bit of 32bit maths to ensure the registers used by the \r
202                 integer tasks get some exercise outside of the integer tasks \r
203                 themselves. The result here is not important we are just deliberately\r
204                 changing registers used by other tasks to ensure that their context\r
205                 switch is operating as required. - see the demo application \r
206                 documentation for more info. */\r
207                 ulDummyVariable *= 3UL;\r
208                 \r
209                 /* See if the other tasks are all ok. */\r
210                 if( prvCheckOtherTasksAreStillRunning() != pdPASS )\r
211                 {\r
212                         /* An error occurred in one of the tasks so shorten the delay \r
213                         period - which has the effect of increasing the frequency of the\r
214                         LED toggle. */\r
215                         xDelayPeriod = mainERROR_CHECK_DELAY;\r
216                 }\r
217 \r
218                 /* Flash! */\r
219                 vParTestToggleLED( mainCHECK_LED );\r
220         }\r
221 }\r
222 /*-----------------------------------------------------------*/\r
223 \r
224 static short prvCheckOtherTasksAreStillRunning( void )\r
225 {\r
226 static short sNoErrorFound = pdTRUE;\r
227 static unsigned long ulLastIdleLoops = 0UL;\r
228 \r
229         /* The demo tasks maintain a count that increments every cycle of the task\r
230         provided that the task has never encountered an error.  This function \r
231         checks the counts maintained by the tasks to ensure they are still being\r
232         incremented.  A count remaining at the same value between calls therefore\r
233         indicates that an error has been detected.  Only tasks that do not flash\r
234         an LED are checked. */\r
235 \r
236         if( xAreIntegerMathsTaskStillRunning() != pdTRUE )\r
237         {\r
238                 sNoErrorFound = pdFALSE;\r
239         }\r
240 \r
241         if( xAreComTestTasksStillRunning() != pdTRUE )\r
242         {\r
243                 sNoErrorFound = pdFALSE;\r
244         }\r
245         \r
246         if( xArePollingQueuesStillRunning() != pdTRUE )\r
247         {\r
248                 sNoErrorFound = pdFALSE;\r
249         }\r
250 \r
251         if( ulLastIdleLoops == ulIdleLoops )\r
252         {\r
253                 sNoErrorFound = pdFALSE;\r
254         }\r
255 \r
256         ulLastIdleLoops = ulIdleLoops;\r
257         \r
258         return sNoErrorFound;\r
259 }\r
260 /*-----------------------------------------------------------*/\r
261 \r
262 static void prvSetupHardware( void )\r
263 {\r
264         /* Stop the watchdog. */\r
265         WDTCTL = WDTPW + WDTHOLD;\r
266 \r
267         /* Setup DCO+ for ( xtal * D * (N + 1) ) operation. */\r
268         FLL_CTL0 |= DCOPLUS + XCAP18PF; \r
269 \r
270         /* X2 DCO frequency, 8MHz nominal DCO */\r
271         SCFI0 |= FN_4;                  \r
272 \r
273         /* (121+1) x 32768 x 2 = 7.99 Mhz */\r
274         SCFQCTL = mainMAX_FREQUENCY;\r
275 \r
276         /* Setup the IO as per the SoftBaugh demo for the same target hardware. */\r
277         P1SEL = 0x32;\r
278         P2SEL = 0x00;\r
279         P3SEL = 0x00;\r
280         P4SEL = 0xFC;\r
281         P5SEL = 0xFF;\r
282 }\r
283 /*-----------------------------------------------------------*/\r
284 \r
285 void vApplicationIdleHook( void );\r
286 void vApplicationIdleHook( void )\r
287 {\r
288         /* Simple put the CPU into lowpower mode. */\r
289         _BIS_SR( LPM3_bits );\r
290         ulIdleLoops++;\r
291 }\r
292 /*-----------------------------------------------------------*/\r
293 \r
294 \r
295 \r
296 \r
297 \r
298 \r
299 \r