]> git.sur5r.net Git - freertos/blob - FreeRTOS/Demo/ARM7_STR71x_IAR/main.c
Update version number ready for V8.2.1 release.
[freertos] / FreeRTOS / Demo / ARM7_STR71x_IAR / main.c
1 /*\r
2     FreeRTOS V8.2.1 - Copyright (C) 2015 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         NOTE : Tasks run in system mode and the scheduler runs in Supervisor mode.\r
72         The processor MUST be in supervisor mode when vTaskStartScheduler is\r
73         called.  The demo applications included in the FreeRTOS.org download switch\r
74         to supervisor mode prior to main being called.  If you are not using one of\r
75         these demo application projects then ensure Supervisor mode is used.\r
76 */\r
77 \r
78 /*\r
79  * Creates all the demo application tasks, then starts the scheduler.  The WEB\r
80  * documentation provides more details of the demo application tasks.\r
81  *\r
82  * Main.c also creates a task called "Check".  This only executes every three\r
83  * seconds but has the highest priority so is guaranteed to get processor time.\r
84  * Its main function is to check that all the other tasks are still operational.\r
85  * Each task (other than the "flash" tasks) maintains a unique count that is\r
86  * incremented each time the task successfully completes its function.  Should\r
87  * any error occur within such a task the count is permanently halted.  The\r
88  * check task inspects the count of each task to ensure it has changed since\r
89  * the last time the check task executed.  If all the count variables have\r
90  * changed all the tasks are still executing error free, and the check task\r
91  * toggles the onboard LED.  Should any task contain an error at any time\r
92  * the LED toggle rate will change from 3 seconds to 500ms.\r
93  *\r
94  */\r
95 \r
96 /* Library includes. */\r
97 #include "RCCU.h"\r
98 #include "wdg.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 "flash.h"\r
106 #include "integer.h"\r
107 #include "PollQ.h"\r
108 #include "BlockQ.h"\r
109 #include "semtest.h"\r
110 #include "dynamic.h"\r
111 #include "partest.h"\r
112 #include "comtest2.h"\r
113 \r
114 /* Priorities for the demo application tasks. */\r
115 #define mainLED_TASK_PRIORITY           ( tskIDLE_PRIORITY + 3 )\r
116 #define mainQUEUE_POLL_PRIORITY         ( tskIDLE_PRIORITY + 2 )\r
117 #define mainCHECK_TASK_PRIORITY         ( tskIDLE_PRIORITY + 4 )\r
118 #define mainSEM_TEST_PRIORITY           ( tskIDLE_PRIORITY + 1 )\r
119 #define mainBLOCK_Q_PRIORITY            ( tskIDLE_PRIORITY + 2 )\r
120 #define mainCOM_TEST_PRIORITY           ( tskIDLE_PRIORITY + 2 )\r
121 \r
122 /* Constants required by the 'Check' task. */\r
123 #define mainNO_ERROR_FLASH_PERIOD       ( ( TickType_t ) 3000 / portTICK_PERIOD_MS  )\r
124 #define mainERROR_FLASH_PERIOD          ( ( TickType_t ) 500 / portTICK_PERIOD_MS  )\r
125 #define mainCHECK_TASK_LED                      ( 4 )\r
126 \r
127 /* Constants for the ComTest tasks. */\r
128 #define mainCOM_TEST_BAUD_RATE          ( ( unsigned long ) 115200 )\r
129 #define mainCOM_TEST_LED                        ( 6 ) /* The LED built onto the kickstart board. */\r
130 \r
131 /*\r
132  * The task that executes at the highest priority and calls\r
133  * prvCheckOtherTasksAreStillRunning().  See the description at the top\r
134  * of the file.\r
135  */\r
136 static void vErrorChecks( void *pvParameters );\r
137 \r
138 /*\r
139  * Configure the processor for use with the IAR STR71x demo board.  This\r
140  * just sets the PLL for the required frequency.\r
141  */\r
142 static void prvSetupHardware( void );\r
143 \r
144 /*\r
145  * Checks that all the demo application tasks are still executing without error\r
146  * - as described at the top of the file.  Called by vErrorChecks().\r
147  */\r
148 static long prvCheckOtherTasksAreStillRunning( void );\r
149 \r
150 \r
151 /*-----------------------------------------------------------*/\r
152 \r
153 /*\r
154  * Starts all the other tasks, then starts the scheduler.\r
155  */\r
156 void main( void )\r
157 {\r
158         /* Setup any hardware that has not already been configured by the low\r
159         level init routines. */\r
160         prvSetupHardware();\r
161 \r
162         /* Initialise the LED outputs for use by the demo application tasks. */\r
163         vParTestInitialise();\r
164 \r
165         /* Start all the standard demo application tasks. */\r
166         vStartIntegerMathTasks( tskIDLE_PRIORITY );\r
167         vStartLEDFlashTasks( mainLED_TASK_PRIORITY );\r
168         vStartPolledQueueTasks( mainQUEUE_POLL_PRIORITY );\r
169         vStartSemaphoreTasks( mainSEM_TEST_PRIORITY );\r
170         vStartBlockingQueueTasks( mainBLOCK_Q_PRIORITY );\r
171         vStartDynamicPriorityTasks();\r
172         vAltStartComTestTasks( mainCOM_TEST_PRIORITY, mainCOM_TEST_BAUD_RATE, mainCOM_TEST_LED );\r
173 \r
174         /* Start the check task - which is defined in this file. */\r
175         xTaskCreate( vErrorChecks, "Check", configMINIMAL_STACK_SIZE, NULL, mainCHECK_TASK_PRIORITY, NULL );\r
176 \r
177         /* Start the scheduler.\r
178 \r
179         NOTE : Tasks run in system mode and the scheduler runs in Supervisor mode.\r
180         The processor MUST be in supervisor mode when vTaskStartScheduler is\r
181         called.  The demo applications included in the FreeRTOS.org download switch\r
182         to supervisor mode prior to main being called.  If you are not using one of\r
183         these demo application projects then ensure Supervisor mode is used here. */\r
184 \r
185         vTaskStartScheduler();\r
186 \r
187         /* We should never get here as control is now taken by the scheduler. */\r
188         return;\r
189 }\r
190 /*-----------------------------------------------------------*/\r
191 \r
192 static void prvSetupHardware( void )\r
193 {\r
194     /* Setup the PLL to generate a 48MHz clock from the 4MHz CLK. */\r
195 \r
196     /* Turn of the div by two. */\r
197         RCCU_Div2Config( DISABLE );\r
198 \r
199     /* 48MHz = ( 4MHz * 12 ) / 1 */\r
200         RCCU_PLL1Config( RCCU_PLL1_Mul_12, RCCU_Div_1 );\r
201     RCCU_RCLKSourceConfig( RCCU_PLL1_Output );\r
202 }\r
203 /*-----------------------------------------------------------*/\r
204 \r
205 static void vErrorChecks( void *pvParameters )\r
206 {\r
207 TickType_t xDelayPeriod = mainNO_ERROR_FLASH_PERIOD;\r
208 TickType_t xLastWakeTime;\r
209 \r
210         /* The parameters are not used in this task. */\r
211         ( void ) pvParameters;\r
212 \r
213         /* Initialise xLastWakeTime to ensure the first call to vTaskDelayUntil()\r
214         functions correctly. */\r
215         xLastWakeTime = xTaskGetTickCount();\r
216 \r
217         /* Cycle for ever, delaying then checking all the other tasks are still\r
218         operating without error.  If an error is detected then the delay period\r
219         is decreased from mainNO_ERROR_FLASH_PERIOD to mainERROR_FLASH_PERIOD so\r
220         the on board LED flash rate will increase. */\r
221 \r
222         for( ;; )\r
223         {\r
224                 /* Delay until it is time to execute again.  The delay period is\r
225                 shorter following an error so the LED flashes faster. */\r
226                 vTaskDelayUntil( &xLastWakeTime, xDelayPeriod );\r
227         \r
228                 /* Check all the standard demo application tasks are executing without\r
229                 error. */\r
230                 if( prvCheckOtherTasksAreStillRunning() != pdPASS )\r
231                 {\r
232                         /* An error has been detected in one of the tasks - flash faster. */\r
233                         xDelayPeriod = mainERROR_FLASH_PERIOD;\r
234                 }\r
235                 \r
236                 vParTestToggleLED( mainCHECK_TASK_LED );\r
237         }\r
238 }\r
239 /*-----------------------------------------------------------*/\r
240 \r
241 static long prvCheckOtherTasksAreStillRunning( void )\r
242 {\r
243 long lReturn = ( long ) pdPASS;\r
244 \r
245         /* Check all the demo tasks (other than the flash tasks) to ensure\r
246         that they are all still running, and that none of them have detected\r
247         an error. */\r
248 \r
249         if( xAreIntegerMathsTaskStillRunning() != pdTRUE )\r
250         {\r
251                 lReturn = ( long ) pdFAIL;\r
252         }\r
253 \r
254         if( xArePollingQueuesStillRunning() != pdTRUE )\r
255         {\r
256                 lReturn = ( long ) pdFAIL;\r
257         }\r
258 \r
259         if( xAreSemaphoreTasksStillRunning() != pdTRUE )\r
260         {\r
261                 lReturn = ( long ) pdFAIL;\r
262         }\r
263 \r
264         if( xAreBlockingQueuesStillRunning() != pdTRUE )\r
265         {\r
266                 lReturn = ( long ) pdFAIL;\r
267         }\r
268 \r
269         if( xAreComTestTasksStillRunning() != pdTRUE )\r
270         {\r
271                 lReturn = ( long ) pdFAIL;\r
272         }\r
273 \r
274         if( xAreDynamicPriorityTasksStillRunning() != pdTRUE )\r
275         {\r
276                 lReturn = ( long ) pdFAIL;\r
277         }\r
278 \r
279         return lReturn;\r
280 }\r
281 /*-----------------------------------------------------------*/\r
282 \r
283 \r