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