2 FreeRTOS V8.2.2 - Copyright (C) 2015 Real Time Engineers Ltd.
\r
5 VISIT http://www.FreeRTOS.org TO ENSURE YOU ARE USING THE LATEST VERSION.
\r
7 This file is part of the FreeRTOS distribution.
\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
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
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
25 ***************************************************************************
\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
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
37 ***************************************************************************
\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
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
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
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
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
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
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
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
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
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
92 * Please read the documentation for the MSP430 port available on
\r
93 * http://www.FreeRTOS.org.
\r
96 /* Standard includes. */
\r
100 /* Scheduler includes. */
\r
101 #include "FreeRTOS.h"
\r
104 /* Demo application includes. */
\r
105 #include "partest.h"
\r
107 #include "integer.h"
\r
108 #include "comtest2.h"
\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
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
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
126 /* Baud rate used by the COM test tasks. */
\r
127 #define mainCOM_TEST_BAUD_RATE ( ( unsigned long ) 19200 )
\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
138 * The function that implements the Check task. See the comments at the head
\r
139 * of the page for implementation details.
\r
141 static void vErrorChecks( void *pvParameters );
\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
147 static short prvCheckOtherTasksAreStillRunning( void );
\r
150 * Perform the hardware setup required by the ES449 in order to run the demo
\r
153 static void prvSetupHardware( void );
\r
155 /* Used to detect the idle hook function stalling. */
\r
156 static volatile unsigned long ulIdleLoops = 0UL;
\r
158 /*-----------------------------------------------------------*/
\r
161 * Start the demo application tasks - then start the real time scheduler.
\r
165 /* Setup the hardware ready for the demo. */
\r
166 prvSetupHardware();
\r
167 vParTestInitialise();
\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
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
178 /* Start the scheduler. */
\r
179 vTaskStartScheduler();
\r
181 /* As the scheduler has been started the demo applications tasks will be
\r
182 executing and we should never get here! */
\r
185 /*-----------------------------------------------------------*/
\r
187 static void vErrorChecks( void *pvParameters )
\r
189 static volatile unsigned long ulDummyVariable = 3UL;
\r
190 TickType_t xDelayPeriod = mainNO_ERROR_CHECK_DELAY;
\r
192 /* Cycle for ever, delaying then checking all the other tasks are still
\r
193 operating without error. */
\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
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
209 /* See if the other tasks are all ok. */
\r
210 if( prvCheckOtherTasksAreStillRunning() != pdPASS )
\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
215 xDelayPeriod = mainERROR_CHECK_DELAY;
\r
219 vParTestToggleLED( mainCHECK_LED );
\r
222 /*-----------------------------------------------------------*/
\r
224 static short prvCheckOtherTasksAreStillRunning( void )
\r
226 static short sNoErrorFound = pdTRUE;
\r
227 static unsigned long ulLastIdleLoops = 0UL;
\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
236 if( xAreIntegerMathsTaskStillRunning() != pdTRUE )
\r
238 sNoErrorFound = pdFALSE;
\r
241 if( xAreComTestTasksStillRunning() != pdTRUE )
\r
243 sNoErrorFound = pdFALSE;
\r
246 if( xArePollingQueuesStillRunning() != pdTRUE )
\r
248 sNoErrorFound = pdFALSE;
\r
251 if( ulLastIdleLoops == ulIdleLoops )
\r
253 sNoErrorFound = pdFALSE;
\r
256 ulLastIdleLoops = ulIdleLoops;
\r
258 return sNoErrorFound;
\r
260 /*-----------------------------------------------------------*/
\r
262 static void prvSetupHardware( void )
\r
264 /* Stop the watchdog. */
\r
265 WDTCTL = WDTPW + WDTHOLD;
\r
267 /* Setup DCO+ for ( xtal * D * (N + 1) ) operation. */
\r
268 FLL_CTL0 |= DCOPLUS + XCAP18PF;
\r
270 /* X2 DCO frequency, 8MHz nominal DCO */
\r
273 /* (121+1) x 32768 x 2 = 7.99 Mhz */
\r
274 SCFQCTL = mainMAX_FREQUENCY;
\r
276 /* Setup the IO as per the SoftBaugh demo for the same target hardware. */
\r
283 /*-----------------------------------------------------------*/
\r
285 void vApplicationIdleHook( void );
\r
286 void vApplicationIdleHook( void )
\r
288 /* Simple put the CPU into lowpower mode. */
\r
289 _BIS_SR( LPM3_bits );
\r
292 /*-----------------------------------------------------------*/
\r