]> git.sur5r.net Git - freertos/blob - Demo/ARM7_LPC2129_IAR/main.c
Update to V5.1.2.
[freertos] / Demo / ARM7_LPC2129_IAR / main.c
1 /*\r
2         FreeRTOS.org V5.1.2 - Copyright (C) 2003-2009 Richard Barry.\r
3 \r
4         This file is part of the FreeRTOS.org distribution.\r
5 \r
6         FreeRTOS.org is free software; you can redistribute it and/or modify\r
7         it under the terms of the GNU General Public License as published by\r
8         the Free Software Foundation; either version 2 of the License, or\r
9         (at your option) any later version.\r
10 \r
11         FreeRTOS.org is distributed in the hope that it will be useful,\r
12         but WITHOUT ANY WARRANTY; without even the implied warranty of\r
13         MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
14         GNU General Public License for more details.\r
15 \r
16         You should have received a copy of the GNU General Public License\r
17         along with FreeRTOS.org; if not, write to the Free Software\r
18         Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA\r
19 \r
20         A special exception to the GPL can be applied should you wish to distribute\r
21         a combined work that includes FreeRTOS.org, without being obliged to provide\r
22         the source code for any proprietary components.  See the licensing section\r
23         of http://www.FreeRTOS.org for full details of how and when the exception\r
24         can be applied.\r
25 \r
26     ***************************************************************************\r
27     ***************************************************************************\r
28     *                                                                         *\r
29     * Get the FreeRTOS eBook!  See http://www.FreeRTOS.org/Documentation      *\r
30         *                                                                         *\r
31         * This is a concise, step by step, 'hands on' guide that describes both   *\r
32         * general multitasking concepts and FreeRTOS specifics. It presents and   *\r
33         * explains numerous examples that are written using the FreeRTOS API.     *\r
34         * Full source code for all the examples is provided in an accompanying    *\r
35         * .zip file.                                                              *\r
36     *                                                                         *\r
37     ***************************************************************************\r
38     ***************************************************************************\r
39 \r
40         Please ensure to read the configuration and relevant port sections of the\r
41         online documentation.\r
42 \r
43         http://www.FreeRTOS.org - Documentation, latest information, license and \r
44         contact details.\r
45 \r
46         http://www.SafeRTOS.com - A version that is certified for use in safety \r
47         critical systems.\r
48 \r
49         http://www.OpenRTOS.com - Commercial support, development, porting, \r
50         licensing and training services.\r
51 */\r
52 \r
53 \r
54 /*\r
55         NOTE : Tasks run in system mode and the scheduler runs in Supervisor mode.\r
56         The processor MUST be in supervisor mode when vTaskStartScheduler is\r
57         called.  The demo applications included in the FreeRTOS.org download switch\r
58         to supervisor mode prior to main being called.  If you are not using one of\r
59         these demo application projects then ensure Supervisor mode is used.\r
60 */\r
61 \r
62 \r
63 /*\r
64  * Creates all the demo application tasks, then starts the scheduler.  The WEB\r
65  * documentation provides more details of the demo application tasks.\r
66  *\r
67  * Main.c also creates a task called "Check".  This only executes every three\r
68  * seconds but has the highest priority so is guaranteed to get processor time.\r
69  * Its main function is to check that all the other tasks are still operational.\r
70  * Each task (other than the "flash" tasks) maintains a unique count that is\r
71  * incremented each time the task successfully completes its function.  Should\r
72  * any error occur within such a task the count is permanently halted.  The\r
73  * check task inspects the count of each task to ensure it has changed since\r
74  * the last time the check task executed.  If all the count variables have\r
75  * changed all the tasks are still executing error free, and the check task\r
76  * toggles the onboard LED.  Should any task contain an error at any time\r
77  * the LED toggle rate will change from 3 seconds to 500ms.\r
78  *\r
79  */\r
80 \r
81 /* Standard includes. */\r
82 #include <stdlib.h>\r
83 \r
84 /* Scheduler includes. */\r
85 #include "FreeRTOS.h"\r
86 #include "task.h"\r
87 \r
88 /* Demo application includes. */\r
89 #include "flash.h"\r
90 #include "integer.h"\r
91 #include "PollQ.h"\r
92 #include "BlockQ.h"\r
93 #include "semtest.h"\r
94 #include "dynamic.h"\r
95 #include "partest.h"\r
96 #include "comtest2.h"\r
97 \r
98 /* Priorities for the demo application tasks. */\r
99 #define mainLED_TASK_PRIORITY           ( tskIDLE_PRIORITY + 3 )\r
100 #define mainQUEUE_POLL_PRIORITY         ( tskIDLE_PRIORITY + 2 )\r
101 #define mainCHECK_TASK_PRIORITY         ( tskIDLE_PRIORITY + 4 )\r
102 #define mainSEM_TEST_PRIORITY           ( tskIDLE_PRIORITY + 1 )\r
103 #define mainBLOCK_Q_PRIORITY            ( tskIDLE_PRIORITY + 2 )\r
104 #define mainCOM_TEST_PRIORITY           ( tskIDLE_PRIORITY + 2 )\r
105 \r
106 /* Constants required by the 'Check' task. */\r
107 #define mainNO_ERROR_FLASH_PERIOD       ( ( portTickType ) 3000 / portTICK_RATE_MS  )\r
108 #define mainERROR_FLASH_PERIOD          ( ( portTickType ) 500 / portTICK_RATE_MS  )\r
109 #define mainCHECK_TASK_LED                      ( 7 )\r
110 \r
111 /* Constants for the ComTest tasks. */\r
112 #define mainCOM_TEST_BAUD_RATE          ( ( unsigned portLONG ) 115200 )\r
113 #define mainCOM_TEST_LED                        ( 4 )\r
114 #define mainTX_ENABLE                           ( ( unsigned portLONG ) 0x0001 )\r
115 #define mainRX_ENABLE                           ( ( unsigned portLONG ) 0x0004 )\r
116 \r
117 /* Constants to setup the PLL. */\r
118 #define mainPLL_MUL_5                           ( ( unsigned portCHAR ) 0x0004 )\r
119 #define mainPLL_DIV_1                           ( ( unsigned portCHAR ) 0x0000 )\r
120 #define mainPLL_ENABLE                          ( ( unsigned portCHAR ) 0x0001 )\r
121 #define mainPLL_CONNECT                         ( ( unsigned portCHAR ) 0x0003 )\r
122 #define mainPLL_FEED_BYTE1                      ( ( unsigned portCHAR ) 0xaa )\r
123 #define mainPLL_FEED_BYTE2                      ( ( unsigned portCHAR ) 0x55 )\r
124 #define mainPLL_LOCK                            ( ( unsigned portLONG ) 0x0400 )\r
125 \r
126 /* Constants to setup the MAM. */\r
127 #define mainMAM_TIM_3                           ( ( unsigned portCHAR ) 0x03 )\r
128 #define mainMAM_MODE_FULL                       ( ( unsigned portCHAR ) 0x02 )\r
129 \r
130 /* Constants to setup the peripheral bus. */\r
131 #define mainBUS_CLK_FULL                        ( ( unsigned portCHAR ) 0x01 )\r
132 \r
133 /* And finally, constant to setup the port for the LED's. */\r
134 #define mainLED_TO_OUTPUT                       ( ( unsigned portLONG ) 0xff0000 )\r
135 \r
136 /*\r
137  * The task that executes at the highest priority and calls\r
138  * prvCheckOtherTasksAreStillRunning().  See the description at the top\r
139  * of the file.\r
140  */\r
141 static void vErrorChecks( void *pvParameters );\r
142 \r
143 /*\r
144  * Configures the processor for use with this demo.\r
145  */\r
146 static void prvSetupHardware( void );\r
147 \r
148 /*\r
149  * Checks that all the demo application tasks are still executing without error\r
150  * - as described at the top of the file.\r
151  */\r
152 static portLONG prvCheckOtherTasksAreStillRunning( void );\r
153 \r
154 \r
155 /*-----------------------------------------------------------*/\r
156 \r
157 /*\r
158  * Starts all the other tasks, then starts the scheduler.\r
159  */\r
160 void main( void )\r
161 {\r
162         /* Setup the processor. */\r
163         prvSetupHardware();\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 multiply the XTAL input by 5. */\r
195         PLLCFG = ( mainPLL_MUL_5 | mainPLL_DIV_1 );\r
196 \r
197         /* Activate the PLL by turning it on then feeding the correct sequence of\r
198         bytes. */\r
199         PLLCON = mainPLL_ENABLE;\r
200         PLLFEED = mainPLL_FEED_BYTE1;\r
201         PLLFEED = mainPLL_FEED_BYTE2;\r
202 \r
203         /* Wait for the PLL to lock... */\r
204         while( !( PLLSTAT & mainPLL_LOCK ) );\r
205 \r
206         /* ...before connecting it using the feed sequence again. */\r
207         PLLCON = mainPLL_CONNECT;\r
208         PLLFEED = mainPLL_FEED_BYTE1;\r
209         PLLFEED = mainPLL_FEED_BYTE2;\r
210 \r
211         /* Setup and turn on the MAM.  Three cycle access is used due to the fast\r
212         PLL used.  It is possible faster overall performance could be obtained by\r
213         tuning the MAM and PLL settings. */\r
214         MAMTIM = mainMAM_TIM_3;\r
215         MAMCR = mainMAM_MODE_FULL;\r
216 \r
217         /* Setup the peripheral bus to be the same as the PLL output. */\r
218         APBDIV = mainBUS_CLK_FULL;\r
219         \r
220         /* Configure the RS2332 pins.  All other pins remain at their default of 0. */\r
221         PINSEL0 |= mainTX_ENABLE;\r
222         PINSEL0 |= mainRX_ENABLE;\r
223 \r
224         /* LED pins need to be output. */\r
225         IO1DIR = mainLED_TO_OUTPUT;\r
226 \r
227         /* Setup the peripheral bus to be the same as the PLL output. */\r
228         APBDIV = mainBUS_CLK_FULL;\r
229 }\r
230 /*-----------------------------------------------------------*/\r
231 \r
232 static void vErrorChecks( void *pvParameters )\r
233 {\r
234 portTickType xDelayPeriod = mainNO_ERROR_FLASH_PERIOD;\r
235 \r
236         /* The parameters are not used in this task. */\r
237         ( void ) pvParameters;\r
238 \r
239         /* Cycle for ever, delaying then checking all the other tasks are still\r
240         operating without error.  If an error is detected then the delay period\r
241         is decreased from mainNO_ERROR_FLASH_PERIOD to mainERROR_FLASH_PERIOD so\r
242         the on board LED flash rate will increase. */\r
243 \r
244         for( ;; )\r
245         {\r
246                 /* Delay until it is time to execute again. */\r
247                 vTaskDelay( xDelayPeriod );\r
248         \r
249                 /* Check all the standard demo application tasks are executing without\r
250                 error. */\r
251                 if( prvCheckOtherTasksAreStillRunning() != pdPASS )\r
252                 {\r
253                         /* An error has been detected in one of the tasks - flash faster. */\r
254                         xDelayPeriod = mainERROR_FLASH_PERIOD;\r
255                 }\r
256                 \r
257                 vParTestToggleLED( mainCHECK_TASK_LED );\r
258         }\r
259 }\r
260 /*-----------------------------------------------------------*/\r
261 \r
262 static portLONG prvCheckOtherTasksAreStillRunning( void )\r
263 {\r
264 portLONG lReturn = ( portLONG ) pdPASS;\r
265 \r
266         /* Check all the demo tasks (other than the flash tasks) to ensure\r
267         that they are all still running, and that none of them have detected\r
268         an error. */\r
269 \r
270         if( xAreIntegerMathsTaskStillRunning() != pdTRUE )\r
271         {\r
272                 lReturn = ( portLONG ) pdFAIL;\r
273         }\r
274 \r
275         if( xArePollingQueuesStillRunning() != pdTRUE )\r
276         {\r
277                 lReturn = ( portLONG ) pdFAIL;\r
278         }\r
279 \r
280         if( xAreSemaphoreTasksStillRunning() != pdTRUE )\r
281         {\r
282                 lReturn = ( portLONG ) pdFAIL;\r
283         }\r
284 \r
285         if( xAreBlockingQueuesStillRunning() != pdTRUE )\r
286         {\r
287                 lReturn = ( portLONG ) pdFAIL;\r
288         }\r
289 \r
290         if( xAreComTestTasksStillRunning() != pdTRUE )\r
291         {\r
292                 lReturn = ( portLONG ) pdFAIL;\r
293         }\r
294 \r
295         if( xAreDynamicPriorityTasksStillRunning() != pdTRUE )\r
296         {\r
297                 lReturn = ( portLONG ) pdFAIL;\r
298         }\r
299 \r
300         return lReturn;\r
301 }\r
302 /*-----------------------------------------------------------*/\r
303 \r
304 \r