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