]> git.sur5r.net Git - freertos/blob - Demo/ARM7_LPC2129_Keil/main.c
Continue to work on Fujitsu 32bit port.
[freertos] / Demo / ARM7_LPC2129_Keil / main.c
1 /*\r
2         FreeRTOS.org V4.7.1 - Copyright (C) 2003-2008 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         Please ensure to read the configuration and relevant port sections of the \r
29         online documentation.\r
30 \r
31         +++ http://www.FreeRTOS.org +++\r
32         Documentation, latest information, license and contact details.  \r
33 \r
34         +++ http://www.SafeRTOS.com +++\r
35         A version that is certified for use in safety critical systems.\r
36 \r
37         +++ http://www.OpenRTOS.com +++\r
38         Commercial support, development, porting, licensing and training services.\r
39 \r
40         ***************************************************************************\r
41 */\r
42 \r
43 /* \r
44         NOTE : Tasks run in system mode and the scheduler runs in Supervisor mode.\r
45         The processor MUST be in supervisor mode when vTaskStartScheduler is \r
46         called.  The demo applications included in the FreeRTOS.org download switch\r
47         to supervisor mode prior to main being called.  If you are not using one of\r
48         these demo application projects then ensure Supervisor mode is used.\r
49 */\r
50 \r
51 \r
52 /*\r
53  * Creates all the demo application tasks, then starts the scheduler.  The WEB\r
54  * documentation provides more details of the demo application tasks.\r
55  * \r
56  * Main.c also creates a task called "Check".  This only executes every three \r
57  * seconds but has the highest priority so is guaranteed to get processor time.  \r
58  * Its main function is to check that all the other tasks are still operational.\r
59  * Each task (other than the "flash" tasks) maintains a unique count that is \r
60  * incremented each time the task successfully completes its function.  Should \r
61  * any error occur within such a task the count is permanently halted.  The \r
62  * check task inspects the count of each task to ensure it has changed since\r
63  * the last time the check task executed.  If all the count variables have \r
64  * changed all the tasks are still executing error free, and the check task\r
65  * toggles the onboard LED.  Should any task contain an error at any time \r
66  * the LED toggle rate will change from 3 seconds to 500ms.\r
67  *\r
68  */\r
69 \r
70 /* Standard includes. */\r
71 #include <stdlib.h>\r
72 \r
73 /* Scheduler includes. */\r
74 #include "FreeRTOS.h"\r
75 #include "task.h"\r
76 \r
77 /* Demo application includes. */\r
78 #include "partest.h"\r
79 #include "flash.h"\r
80 #include "integer.h"\r
81 #include "comtest2.h"\r
82 #include "serial.h"\r
83 \r
84 #ifdef KEIL_THUMB_INTERWORK\r
85         /* \r
86                 THUMB mode allows more tasks to be created without the executable \r
87                 binary exceeding the limits allowed by the evaluation version of \r
88                 uVision3.\r
89         */\r
90         #include "PollQ.h"\r
91         #include "BlockQ.h"\r
92         #include "semtest.h"\r
93         #include "dynamic.h"\r
94 \r
95 #endif\r
96 \r
97 /*-----------------------------------------------------------*/\r
98 \r
99 /* Constants to setup I/O and processor. */\r
100 #define mainTX_ENABLE           ( ( unsigned portLONG ) 0x0001 )\r
101 #define mainRX_ENABLE           ( ( unsigned portLONG ) 0x0004 )\r
102 #define mainBUS_CLK_FULL        ( ( unsigned portCHAR ) 0x01 )\r
103 #define mainLED_TO_OUTPUT       ( ( unsigned portLONG ) 0xff0000 )\r
104 \r
105 /* Constants for the ComTest demo application tasks. */\r
106 #define mainCOM_TEST_BAUD_RATE  ( ( unsigned portLONG ) 115200 )\r
107 #define mainCOM_TEST_LED                ( 3 )\r
108 \r
109 /* Priorities for the demo application tasks. */\r
110 #define mainLED_TASK_PRIORITY           ( tskIDLE_PRIORITY + 3 )\r
111 #define mainCOM_TEST_PRIORITY           ( tskIDLE_PRIORITY + 2 )\r
112 #define mainQUEUE_POLL_PRIORITY         ( tskIDLE_PRIORITY + 2 )\r
113 #define mainBLOCK_Q_PRIORITY            ( tskIDLE_PRIORITY + 2 )\r
114 #define mainSEM_TEST_PRIORITY           ( tskIDLE_PRIORITY + 1 )\r
115 #define mainCHECK_TASK_PRIORITY         ( tskIDLE_PRIORITY + 4 )\r
116 \r
117 /* Constants used by the "check" task.  As described at the head of this file\r
118 the check task toggles an LED.  The rate at which the LED flashes is used to\r
119 indicate whether an error has been detected or not.  If the LED toggles every\r
120 3 seconds then no errors have been detected.  If the rate increases to 500ms\r
121 then an error has been detected in at least one of the demo application tasks. */\r
122 #define mainCHECK_LED                           ( 7 )\r
123 #define mainNO_ERROR_FLASH_PERIOD       ( ( portTickType ) 3000 / portTICK_RATE_MS  )\r
124 #define mainERROR_FLASH_PERIOD          ( ( portTickType ) 500 / portTICK_RATE_MS  )\r
125 \r
126 /*-----------------------------------------------------------*/\r
127 \r
128 /*\r
129  * Checks that all the demo application tasks are still executing without error\r
130  * - as described at the top of the file.\r
131  */\r
132 static portLONG prvCheckOtherTasksAreStillRunning( void );\r
133 \r
134 /*\r
135  * The task that executes at the highest priority and calls \r
136  * prvCheckOtherTasksAreStillRunning().  See the description at the top\r
137  * of the file.\r
138  */\r
139 static void vErrorChecks( void *pvParameters );\r
140 \r
141 /*\r
142  * Configure the processor for use with the Keil demo board.  This is very\r
143  * minimal as most of the setup is managed by the settings in the project\r
144  * file.\r
145  */\r
146 static void prvSetupHardware( void );\r
147 \r
148 /*-----------------------------------------------------------*/\r
149 \r
150 \r
151 \r
152 /*\r
153  * Application entry point:\r
154  * Starts all the other tasks, then starts the scheduler. \r
155  */\r
156 int main( void )\r
157 {\r
158         /* Setup the hardware for use with the Keil demo board. */\r
159         prvSetupHardware();\r
160 \r
161         /* Start the demo/test application tasks. */\r
162         vStartIntegerMathTasks( tskIDLE_PRIORITY );\r
163         vAltStartComTestTasks( mainCOM_TEST_PRIORITY, mainCOM_TEST_BAUD_RATE, mainCOM_TEST_LED );\r
164         vStartLEDFlashTasks( mainLED_TASK_PRIORITY );\r
165 \r
166         #ifdef KEIL_THUMB_INTERWORK\r
167                 /* When using THUMB mode we can start more tasks without the executable\r
168                 exceeding the size limit imposed by the evaluation version of uVision3. */\r
169                 vStartPolledQueueTasks( mainQUEUE_POLL_PRIORITY );\r
170                 vStartBlockingQueueTasks( mainBLOCK_Q_PRIORITY );\r
171                 vStartSemaphoreTasks( mainSEM_TEST_PRIORITY );\r
172                 vStartDynamicPriorityTasks();\r
173         #endif\r
174 \r
175         /* Start the check task - which is defined in this file.  This is the task\r
176         that periodically checks to see that all the other tasks are executing \r
177         without error. */\r
178         xTaskCreate( vErrorChecks, "Check", configMINIMAL_STACK_SIZE, NULL, mainCHECK_TASK_PRIORITY, NULL );\r
179 \r
180         /* Now all the tasks have been started - start the scheduler.\r
181 \r
182         NOTE : Tasks run in system mode and the scheduler runs in Supervisor mode.\r
183         The processor MUST be in supervisor mode when vTaskStartScheduler is \r
184         called.  The demo applications included in the FreeRTOS.org download switch\r
185         to supervisor mode prior to main being called.  If you are not using one of\r
186         these demo application projects then ensure Supervisor mode is used here. */\r
187         vTaskStartScheduler();\r
188 \r
189         /* Should never reach here! */\r
190         return 0;\r
191 }\r
192 /*-----------------------------------------------------------*/\r
193 \r
194 static void vErrorChecks( void *pvParameters )\r
195 {\r
196 portTickType xDelayPeriod = mainNO_ERROR_FLASH_PERIOD;\r
197 \r
198         /* Parameters are not used. */\r
199         ( void ) pvParameters;\r
200 \r
201         /* Cycle for ever, delaying then checking all the other tasks are still\r
202         operating without error.  If an error is detected then the delay period\r
203         is decreased from mainNO_ERROR_FLASH_PERIOD to mainERROR_FLASH_PERIOD so\r
204         the on board LED flash rate will increase.\r
205 \r
206         This task runs at the highest priority. */\r
207 \r
208         for( ;; )\r
209         {\r
210                 /* The period of the delay depends on whether an error has been \r
211                 detected or not.  If an error has been detected then the period\r
212                 is reduced to increase the LED flash rate. */\r
213                 vTaskDelay( xDelayPeriod );\r
214 \r
215                 if( prvCheckOtherTasksAreStillRunning() != pdPASS )\r
216                 {\r
217                         /* An error has been detected in one of the tasks - flash faster. */\r
218                         xDelayPeriod = mainERROR_FLASH_PERIOD;\r
219                 }\r
220 \r
221                 /* Toggle the LED before going back to wait for the next cycle. */\r
222                 vParTestToggleLED( mainCHECK_LED );\r
223         }\r
224 }\r
225 /*-----------------------------------------------------------*/\r
226 \r
227 static void prvSetupHardware( void )\r
228 {\r
229         /* Perform the hardware setup required.  This is minimal as most of the\r
230         setup is managed by the settings in the project file. */\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         IODIR1 = mainLED_TO_OUTPUT;\r
238 \r
239         /* Setup the peripheral bus to be the same as the PLL output. */\r
240         VPBDIV = mainBUS_CLK_FULL;\r
241 }\r
242 /*-----------------------------------------------------------*/\r
243 \r
244 static portLONG prvCheckOtherTasksAreStillRunning( void )\r
245 {\r
246 portLONG lReturn = pdPASS;\r
247 \r
248         /* Check all the demo tasks (other than the flash tasks) to ensure\r
249         that they are all still running, and that none of them have detected\r
250         an error. */\r
251         if( xAreIntegerMathsTaskStillRunning() != pdPASS )\r
252         {\r
253                 lReturn = pdFAIL;\r
254         }\r
255 \r
256         if( xAreComTestTasksStillRunning() != pdPASS )\r
257         {\r
258                 lReturn = pdFAIL;\r
259         }\r
260 \r
261         #ifdef KEIL_THUMB_INTERWORK\r
262 \r
263                 /* When using THUMB mode we can start more tasks without the executable\r
264                 exceeding the size limit imposed by the evaluation version of uVision3. */\r
265         \r
266                 if( xArePollingQueuesStillRunning() != pdTRUE )\r
267                 {\r
268                         lReturn = pdFAIL;\r
269                 }\r
270         \r
271                 if( xAreBlockingQueuesStillRunning() != pdTRUE )\r
272                 {\r
273                         lReturn = pdFAIL;\r
274                 }\r
275         \r
276                 if( xAreSemaphoreTasksStillRunning() != pdTRUE )\r
277                 {\r
278                         lReturn = pdFAIL;\r
279                 }\r
280 \r
281                 if( xAreDynamicPriorityTasksStillRunning() != pdTRUE )\r
282                 {\r
283                         lReturn = pdFAIL;\r
284                 }\r
285 \r
286         #endif\r
287 \r
288         return lReturn;\r
289 }\r
290 /*-----------------------------------------------------------*/\r
291 \r
292 \r