]> git.sur5r.net Git - freertos/blob - FreeRTOS/Demo/ARM7_LPC2129_IAR/main.c
Minor updates and change version number for V7.5.0 release.
[freertos] / FreeRTOS / Demo / ARM7_LPC2129_IAR / main.c
1 /*\r
2     FreeRTOS V7.5.0 - Copyright (C) 2013 Real Time Engineers Ltd.\r
3 \r
4     VISIT http://www.FreeRTOS.org TO ENSURE YOU ARE USING THE LATEST VERSION.\r
5 \r
6     ***************************************************************************\r
7      *                                                                       *\r
8      *    FreeRTOS provides completely free yet professionally developed,    *\r
9      *    robust, strictly quality controlled, supported, and cross          *\r
10      *    platform software that has become a de facto standard.             *\r
11      *                                                                       *\r
12      *    Help yourself get started quickly and support the FreeRTOS         *\r
13      *    project by purchasing a FreeRTOS tutorial book, reference          *\r
14      *    manual, or both from: http://www.FreeRTOS.org/Documentation        *\r
15      *                                                                       *\r
16      *    Thank you!                                                         *\r
17      *                                                                       *\r
18     ***************************************************************************\r
19 \r
20     This file is part of the FreeRTOS distribution.\r
21 \r
22     FreeRTOS is free software; you can redistribute it and/or modify it under\r
23     the terms of the GNU General Public License (version 2) as published by the\r
24     Free Software Foundation >>!AND MODIFIED BY!<< the FreeRTOS exception.\r
25 \r
26     >>! NOTE: The modification to the GPL is included to allow you to distribute\r
27     >>! a combined work that includes FreeRTOS without being obliged to provide\r
28     >>! the source code for proprietary components outside of the FreeRTOS\r
29     >>! kernel.\r
30 \r
31     FreeRTOS is distributed in the hope that it will be useful, but WITHOUT ANY\r
32     WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS\r
33     FOR A PARTICULAR PURPOSE.  Full license text is available from the following\r
34     link: http://www.freertos.org/a00114.html\r
35 \r
36     1 tab == 4 spaces!\r
37 \r
38     ***************************************************************************\r
39      *                                                                       *\r
40      *    Having a problem?  Start by reading the FAQ "My application does   *\r
41      *    not run, what could be wrong?"                                     *\r
42      *                                                                       *\r
43      *    http://www.FreeRTOS.org/FAQHelp.html                               *\r
44      *                                                                       *\r
45     ***************************************************************************\r
46 \r
47     http://www.FreeRTOS.org - Documentation, books, training, latest versions,\r
48     license and Real Time Engineers Ltd. contact details.\r
49 \r
50     http://www.FreeRTOS.org/plus - A selection of FreeRTOS ecosystem products,\r
51     including FreeRTOS+Trace - an indispensable productivity tool, a DOS\r
52     compatible FAT file system, and our tiny thread aware UDP/IP stack.\r
53 \r
54     http://www.OpenRTOS.com - Real Time Engineers ltd license FreeRTOS to High\r
55     Integrity Systems to sell under the OpenRTOS brand.  Low cost OpenRTOS\r
56     licenses offer ticketed support, indemnification and middleware.\r
57 \r
58     http://www.SafeRTOS.com - High Integrity Systems also provide a safety\r
59     engineered and independently SIL3 certified version for use in safety and\r
60     mission critical applications that require provable dependability.\r
61 \r
62     1 tab == 4 spaces!\r
63 */\r
64 \r
65 \r
66 /*\r
67         NOTE : Tasks run in system mode and the scheduler runs in Supervisor mode.\r
68         The processor MUST be in supervisor mode when vTaskStartScheduler is\r
69         called.  The demo applications included in the FreeRTOS.org download switch\r
70         to supervisor mode prior to main being called.  If you are not using one of\r
71         these demo application projects then ensure Supervisor mode is used.\r
72 */\r
73 \r
74 \r
75 /*\r
76  * Creates all the demo application tasks, then starts the scheduler.  The WEB\r
77  * documentation provides more details of the demo application tasks.\r
78  *\r
79  * Main.c also creates a task called "Check".  This only executes every three\r
80  * seconds but has the highest priority so is guaranteed to get processor time.\r
81  * Its main function is to check that all the other tasks are still operational.\r
82  * Each task (other than the "flash" tasks) maintains a unique count that is\r
83  * incremented each time the task successfully completes its function.  Should\r
84  * any error occur within such a task the count is permanently halted.  The\r
85  * check task inspects the count of each task to ensure it has changed since\r
86  * the last time the check task executed.  If all the count variables have\r
87  * changed all the tasks are still executing error free, and the check task\r
88  * toggles the onboard LED.  Should any task contain an error at any time\r
89  * the LED toggle rate will change from 3 seconds to 500ms.\r
90  *\r
91  */\r
92 \r
93 /* Standard includes. */\r
94 #include <stdlib.h>\r
95 \r
96 /* Scheduler includes. */\r
97 #include "FreeRTOS.h"\r
98 #include "task.h"\r
99 \r
100 /* Demo application includes. */\r
101 #include "flash.h"\r
102 #include "integer.h"\r
103 #include "PollQ.h"\r
104 #include "BlockQ.h"\r
105 #include "semtest.h"\r
106 #include "dynamic.h"\r
107 #include "partest.h"\r
108 #include "comtest2.h"\r
109 \r
110 /* Priorities for the demo application tasks. */\r
111 #define mainLED_TASK_PRIORITY           ( tskIDLE_PRIORITY + 3 )\r
112 #define mainQUEUE_POLL_PRIORITY         ( tskIDLE_PRIORITY + 2 )\r
113 #define mainCHECK_TASK_PRIORITY         ( tskIDLE_PRIORITY + 4 )\r
114 #define mainSEM_TEST_PRIORITY           ( tskIDLE_PRIORITY + 1 )\r
115 #define mainBLOCK_Q_PRIORITY            ( tskIDLE_PRIORITY + 2 )\r
116 #define mainCOM_TEST_PRIORITY           ( tskIDLE_PRIORITY + 2 )\r
117 \r
118 /* Constants required by the 'Check' task. */\r
119 #define mainNO_ERROR_FLASH_PERIOD       ( ( portTickType ) 3000 / portTICK_RATE_MS  )\r
120 #define mainERROR_FLASH_PERIOD          ( ( portTickType ) 500 / portTICK_RATE_MS  )\r
121 #define mainCHECK_TASK_LED                      ( 7 )\r
122 \r
123 /* Constants for the ComTest tasks. */\r
124 #define mainCOM_TEST_BAUD_RATE          ( ( unsigned long ) 115200 )\r
125 #define mainCOM_TEST_LED                        ( 4 )\r
126 #define mainTX_ENABLE                           ( ( unsigned long ) 0x0001 )\r
127 #define mainRX_ENABLE                           ( ( unsigned long ) 0x0004 )\r
128 \r
129 /* Constants to setup the PLL. */\r
130 #define mainPLL_MUL_5                           ( ( unsigned char ) 0x0004 )\r
131 #define mainPLL_DIV_1                           ( ( unsigned char ) 0x0000 )\r
132 #define mainPLL_ENABLE                          ( ( unsigned char ) 0x0001 )\r
133 #define mainPLL_CONNECT                         ( ( unsigned char ) 0x0003 )\r
134 #define mainPLL_FEED_BYTE1                      ( ( unsigned char ) 0xaa )\r
135 #define mainPLL_FEED_BYTE2                      ( ( unsigned char ) 0x55 )\r
136 #define mainPLL_LOCK                            ( ( unsigned long ) 0x0400 )\r
137 \r
138 /* Constants to setup the MAM. */\r
139 #define mainMAM_TIM_3                           ( ( unsigned char ) 0x03 )\r
140 #define mainMAM_MODE_FULL                       ( ( unsigned char ) 0x02 )\r
141 \r
142 /* Constants to setup the peripheral bus. */\r
143 #define mainBUS_CLK_FULL                        ( ( unsigned char ) 0x01 )\r
144 \r
145 /* And finally, constant to setup the port for the LED's. */\r
146 #define mainLED_TO_OUTPUT                       ( ( unsigned long ) 0xff0000 )\r
147 \r
148 /*\r
149  * The task that executes at the highest priority and calls\r
150  * prvCheckOtherTasksAreStillRunning().  See the description at the top\r
151  * of the file.\r
152  */\r
153 static void vErrorChecks( void *pvParameters );\r
154 \r
155 /*\r
156  * Configures the processor for use with this demo.\r
157  */\r
158 static void prvSetupHardware( void );\r
159 \r
160 /*\r
161  * Checks that all the demo application tasks are still executing without error\r
162  * - as described at the top of the file.\r
163  */\r
164 static long prvCheckOtherTasksAreStillRunning( void );\r
165 \r
166 \r
167 /*-----------------------------------------------------------*/\r
168 \r
169 /*\r
170  * Starts all the other tasks, then starts the scheduler.\r
171  */\r
172 void main( void )\r
173 {\r
174         /* Setup the processor. */\r
175         prvSetupHardware();\r
176 \r
177         /* Start all the standard demo application tasks. */\r
178         vStartIntegerMathTasks( tskIDLE_PRIORITY );\r
179         vStartLEDFlashTasks( mainLED_TASK_PRIORITY );\r
180         vStartPolledQueueTasks( mainQUEUE_POLL_PRIORITY );\r
181         vStartSemaphoreTasks( mainSEM_TEST_PRIORITY );\r
182         vStartBlockingQueueTasks( mainBLOCK_Q_PRIORITY );\r
183         vStartDynamicPriorityTasks();\r
184         vAltStartComTestTasks( mainCOM_TEST_PRIORITY, mainCOM_TEST_BAUD_RATE, mainCOM_TEST_LED );\r
185                 \r
186         /* Start the check task - which is defined in this file. */\r
187         xTaskCreate( vErrorChecks, "Check", configMINIMAL_STACK_SIZE, NULL, mainCHECK_TASK_PRIORITY, NULL );\r
188 \r
189         /* Start the scheduler.\r
190 \r
191         NOTE : Tasks run in system mode and the scheduler runs in Supervisor mode.\r
192         The processor MUST be in supervisor mode when vTaskStartScheduler is\r
193         called.  The demo applications included in the FreeRTOS.org download switch\r
194         to supervisor mode prior to main being called.  If you are not using one of\r
195         these demo application projects then ensure Supervisor mode is used here.\r
196         */\r
197         vTaskStartScheduler();\r
198 \r
199         /* We should never get here as control is now taken by the scheduler. */\r
200         return;\r
201 }\r
202 /*-----------------------------------------------------------*/\r
203 \r
204 static void prvSetupHardware( void )\r
205 {\r
206         /* Setup the PLL to multiply the XTAL input by 5. */\r
207         PLLCFG = ( mainPLL_MUL_5 | mainPLL_DIV_1 );\r
208 \r
209         /* Activate the PLL by turning it on then feeding the correct sequence of\r
210         bytes. */\r
211         PLLCON = mainPLL_ENABLE;\r
212         PLLFEED = mainPLL_FEED_BYTE1;\r
213         PLLFEED = mainPLL_FEED_BYTE2;\r
214 \r
215         /* Wait for the PLL to lock... */\r
216         while( !( PLLSTAT & mainPLL_LOCK ) );\r
217 \r
218         /* ...before connecting it using the feed sequence again. */\r
219         PLLCON = mainPLL_CONNECT;\r
220         PLLFEED = mainPLL_FEED_BYTE1;\r
221         PLLFEED = mainPLL_FEED_BYTE2;\r
222 \r
223         /* Setup and turn on the MAM.  Three cycle access is used due to the fast\r
224         PLL used.  It is possible faster overall performance could be obtained by\r
225         tuning the MAM and PLL settings. */\r
226         MAMTIM = mainMAM_TIM_3;\r
227         MAMCR = mainMAM_MODE_FULL;\r
228 \r
229         /* Setup the peripheral bus to be the same as the PLL output. */\r
230         APBDIV = mainBUS_CLK_FULL;\r
231         \r
232         /* Configure the RS2332 pins.  All other pins remain at their default of 0. */\r
233         PINSEL0 |= mainTX_ENABLE;\r
234         PINSEL0 |= mainRX_ENABLE;\r
235 \r
236         /* LED pins need to be output. */\r
237         IO1DIR = mainLED_TO_OUTPUT;\r
238 \r
239         /* Setup the peripheral bus to be the same as the PLL output. */\r
240         APBDIV = mainBUS_CLK_FULL;\r
241 }\r
242 /*-----------------------------------------------------------*/\r
243 \r
244 static void vErrorChecks( void *pvParameters )\r
245 {\r
246 portTickType xDelayPeriod = mainNO_ERROR_FLASH_PERIOD;\r
247 \r
248         /* The parameters are not used in this task. */\r
249         ( void ) pvParameters;\r
250 \r
251         /* Cycle for ever, delaying then checking all the other tasks are still\r
252         operating without error.  If an error is detected then the delay period\r
253         is decreased from mainNO_ERROR_FLASH_PERIOD to mainERROR_FLASH_PERIOD so\r
254         the on board LED flash rate will increase. */\r
255 \r
256         for( ;; )\r
257         {\r
258                 /* Delay until it is time to execute again. */\r
259                 vTaskDelay( xDelayPeriod );\r
260         \r
261                 /* Check all the standard demo application tasks are executing without\r
262                 error. */\r
263                 if( prvCheckOtherTasksAreStillRunning() != pdPASS )\r
264                 {\r
265                         /* An error has been detected in one of the tasks - flash faster. */\r
266                         xDelayPeriod = mainERROR_FLASH_PERIOD;\r
267                 }\r
268                 \r
269                 vParTestToggleLED( mainCHECK_TASK_LED );\r
270         }\r
271 }\r
272 /*-----------------------------------------------------------*/\r
273 \r
274 static long prvCheckOtherTasksAreStillRunning( void )\r
275 {\r
276 long lReturn = ( long ) pdPASS;\r
277 \r
278         /* Check all the demo tasks (other than the flash tasks) to ensure\r
279         that they are all still running, and that none of them have detected\r
280         an error. */\r
281 \r
282         if( xAreIntegerMathsTaskStillRunning() != pdTRUE )\r
283         {\r
284                 lReturn = ( long ) pdFAIL;\r
285         }\r
286 \r
287         if( xArePollingQueuesStillRunning() != pdTRUE )\r
288         {\r
289                 lReturn = ( long ) pdFAIL;\r
290         }\r
291 \r
292         if( xAreSemaphoreTasksStillRunning() != pdTRUE )\r
293         {\r
294                 lReturn = ( long ) pdFAIL;\r
295         }\r
296 \r
297         if( xAreBlockingQueuesStillRunning() != pdTRUE )\r
298         {\r
299                 lReturn = ( long ) pdFAIL;\r
300         }\r
301 \r
302         if( xAreComTestTasksStillRunning() != pdTRUE )\r
303         {\r
304                 lReturn = ( long ) pdFAIL;\r
305         }\r
306 \r
307         if( xAreDynamicPriorityTasksStillRunning() != pdTRUE )\r
308         {\r
309                 lReturn = ( long ) pdFAIL;\r
310         }\r
311 \r
312         return lReturn;\r
313 }\r
314 /*-----------------------------------------------------------*/\r
315 \r
316 \r