]> git.sur5r.net Git - freertos/blob - FreeRTOS/Demo/ARM7_LPC2129_Keil_RVDS/main.c
Prepare for V7.3.0 release.
[freertos] / FreeRTOS / Demo / ARM7_LPC2129_Keil_RVDS / main.c
1 /*\r
2     FreeRTOS V7.3.0 - Copyright (C) 2012 Real Time Engineers Ltd.\r
3 \r
4     FEATURES AND PORTS ARE ADDED TO FREERTOS ALL THE TIME.  PLEASE VISIT \r
5     http://www.FreeRTOS.org TO ENSURE YOU ARE USING THE LATEST VERSION.\r
6 \r
7     ***************************************************************************\r
8      *                                                                       *\r
9      *    FreeRTOS tutorial books are available in pdf and paperback.        *\r
10      *    Complete, revised, and edited pdf reference manuals are also       *\r
11      *    available.                                                         *\r
12      *                                                                       *\r
13      *    Purchasing FreeRTOS documentation will not only help you, by       *\r
14      *    ensuring you get running as quickly as possible and with an        *\r
15      *    in-depth knowledge of how to use FreeRTOS, it will also help       *\r
16      *    the FreeRTOS project to continue with its mission of providing     *\r
17      *    professional grade, cross platform, de facto standard solutions    *\r
18      *    for microcontrollers - completely free of charge!                  *\r
19      *                                                                       *\r
20      *    >>> See http://www.FreeRTOS.org/Documentation for details. <<<     *\r
21      *                                                                       *\r
22      *    Thank you for using FreeRTOS, and thank you for your support!      *\r
23      *                                                                       *\r
24     ***************************************************************************\r
25 \r
26 \r
27     This file is part of the FreeRTOS distribution.\r
28 \r
29     FreeRTOS is free software; you can redistribute it and/or modify it under\r
30     the terms of the GNU General Public License (version 2) as published by the\r
31     Free Software Foundation AND MODIFIED BY the FreeRTOS exception.\r
32     >>>NOTE<<< The modification to the GPL is included to allow you to\r
33     distribute a combined work that includes FreeRTOS without being obliged to\r
34     provide the source code for proprietary components outside of the FreeRTOS\r
35     kernel.  FreeRTOS is distributed in the hope that it will be useful, but\r
36     WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY\r
37     or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for\r
38     more details. You should have received a copy of the GNU General Public\r
39     License and the FreeRTOS license exception along with FreeRTOS; if not it\r
40     can be viewed here: http://www.freertos.org/a00114.html and also obtained\r
41     by writing to Richard Barry, contact details for whom are available on the\r
42     FreeRTOS WEB site.\r
43 \r
44     1 tab == 4 spaces!\r
45     \r
46     ***************************************************************************\r
47      *                                                                       *\r
48      *    Having a problem?  Start by reading the FAQ "My application does   *\r
49      *    not run, what could be wrong?"                                     *\r
50      *                                                                       *\r
51      *    http://www.FreeRTOS.org/FAQHelp.html                               *\r
52      *                                                                       *\r
53     ***************************************************************************\r
54 \r
55     \r
56     http://www.FreeRTOS.org - Documentation, training, latest versions, license \r
57     and contact details.  \r
58     \r
59     http://www.FreeRTOS.org/plus - A selection of FreeRTOS ecosystem products,\r
60     including FreeRTOS+Trace - an indispensable productivity tool.\r
61 \r
62     Real Time Engineers ltd license FreeRTOS to High Integrity Systems, who sell \r
63     the code with commercial support, indemnification, and middleware, under \r
64     the OpenRTOS brand: http://www.OpenRTOS.com.  High Integrity Systems also\r
65     provide a safety engineered and independently SIL3 certified version under \r
66     the SafeRTOS brand: http://www.SafeRTOS.com.\r
67 */\r
68 \r
69 /* \r
70         NOTE : Tasks run in system mode and the scheduler runs in Supervisor mode.\r
71         The processor MUST be in supervisor mode when vTaskStartScheduler is \r
72         called.  The demo applications included in the FreeRTOS.org download switch\r
73         to supervisor mode prior to main being called.  If you are not using one of\r
74         these demo application projects then ensure Supervisor mode is used.\r
75 */\r
76 \r
77 \r
78 /*\r
79  * Creates all the demo application tasks, then starts the scheduler.  The WEB\r
80  * documentation provides more details of the demo application tasks.\r
81  * \r
82  * Main.c also creates a task called "Check".  This only executes every three \r
83  * seconds but has the highest priority so is guaranteed to get processor time.  \r
84  * Its main function is to check that all the other tasks are still operational.\r
85  * Each task (other than the "flash" tasks) maintains a unique count that is \r
86  * incremented each time the task successfully completes its function.  Should \r
87  * any error occur within such a task the count is permanently halted.  The \r
88  * check task inspects the count of each task to ensure it has changed since\r
89  * the last time the check task executed.  If all the count variables have \r
90  * changed all the tasks are still executing error free, and the check task\r
91  * toggles the onboard LED.  Should any task contain an error at any time \r
92  * the LED toggle rate will change from 3 seconds to 500ms.\r
93  *\r
94  */\r
95 \r
96 /* Standard includes. */\r
97 #include <stdlib.h>\r
98 \r
99 /* Scheduler includes. */\r
100 #include "FreeRTOS.h"\r
101 #include "task.h"\r
102 \r
103 /* Demo application includes. */\r
104 #include "partest.h"\r
105 #include "flash.h"\r
106 #include "comtest2.h"\r
107 #include "serial.h"\r
108 #include "PollQ.h"\r
109 #include "BlockQ.h"\r
110 #include "semtest.h"\r
111 #include "dynamic.h"\r
112 \r
113 /*-----------------------------------------------------------*/\r
114 \r
115 /* Constants to setup I/O and processor. */\r
116 #define mainTX_ENABLE           ( ( unsigned portLONG ) 0x00010000 )    /* UART1. */\r
117 #define mainRX_ENABLE           ( ( unsigned portLONG ) 0x00040000 )    /* UART1. */\r
118 #define mainBUS_CLK_FULL        ( ( unsigned portCHAR ) 0x01 )\r
119 #define mainLED_TO_OUTPUT       ( ( unsigned portLONG ) 0xff0000 )\r
120 \r
121 /* Constants for the ComTest demo application tasks. */\r
122 #define mainCOM_TEST_BAUD_RATE  ( ( unsigned portLONG ) 115200 )\r
123 #define mainCOM_TEST_LED                ( 3 )\r
124 \r
125 /* Priorities for the demo application tasks. */\r
126 #define mainLED_TASK_PRIORITY           ( tskIDLE_PRIORITY + 2 )\r
127 #define mainCOM_TEST_PRIORITY           ( tskIDLE_PRIORITY + 2 )\r
128 #define mainQUEUE_POLL_PRIORITY         ( tskIDLE_PRIORITY + 2 )\r
129 #define mainBLOCK_Q_PRIORITY            ( tskIDLE_PRIORITY + 2 )\r
130 #define mainSEM_TEST_PRIORITY           ( tskIDLE_PRIORITY + 1 )\r
131 #define mainCHECK_TASK_PRIORITY         ( tskIDLE_PRIORITY + 3 )\r
132 \r
133 /* Constants used by the "check" task.  As described at the head of this file\r
134 the check task toggles an LED.  The rate at which the LED flashes is used to\r
135 indicate whether an error has been detected or not.  If the LED toggles every\r
136 3 seconds then no errors have been detected.  If the rate increases to 500ms\r
137 then an error has been detected in at least one of the demo application tasks. */\r
138 #define mainCHECK_LED                           ( 7 )\r
139 #define mainNO_ERROR_FLASH_PERIOD       ( ( portTickType ) 3000 / portTICK_RATE_MS  )\r
140 #define mainERROR_FLASH_PERIOD          ( ( portTickType ) 500 / portTICK_RATE_MS  )\r
141 \r
142 /*-----------------------------------------------------------*/\r
143 \r
144 /*\r
145  * Checks that all the demo application tasks are still executing without error\r
146  * - as described at the top of the file.\r
147  */\r
148 static portLONG prvCheckOtherTasksAreStillRunning( void );\r
149 \r
150 /*\r
151  * The task that executes at the highest priority and calls \r
152  * prvCheckOtherTasksAreStillRunning().  See the description at the top\r
153  * of the file.\r
154  */\r
155 static void vErrorChecks( void *pvParameters );\r
156 \r
157 /*\r
158  * Configure the processor for use with the Keil demo board.  This is very\r
159  * minimal as most of the setup is managed by the settings in the project\r
160  * file.\r
161  */\r
162 static void prvSetupHardware( void );\r
163 \r
164 /*-----------------------------------------------------------*/\r
165 \r
166 \r
167 \r
168 /*\r
169  * Application entry point:\r
170  * Starts all the other tasks, then starts the scheduler. \r
171  */\r
172 int main( void )\r
173 {\r
174         /* Setup the hardware for use with the Keil demo board. */\r
175         prvSetupHardware();\r
176 \r
177         /* Start the demo/test application tasks. */\r
178         vAltStartComTestTasks( mainCOM_TEST_PRIORITY, mainCOM_TEST_BAUD_RATE, mainCOM_TEST_LED );\r
179         vStartLEDFlashTasks( mainLED_TASK_PRIORITY );\r
180         vStartPolledQueueTasks( mainQUEUE_POLL_PRIORITY );\r
181         vStartBlockingQueueTasks( mainBLOCK_Q_PRIORITY );\r
182         vStartSemaphoreTasks( mainSEM_TEST_PRIORITY );\r
183         vStartDynamicPriorityTasks();\r
184 \r
185         /* Start the check task - which is defined in this file.  This is the task\r
186         that periodically checks to see that all the other tasks are executing \r
187         without error. */\r
188         xTaskCreate( vErrorChecks, "Check", configMINIMAL_STACK_SIZE, NULL, mainCHECK_TASK_PRIORITY, NULL );\r
189 \r
190         /* Now all the tasks have been started - start the scheduler.\r
191 \r
192         NOTE : Tasks run in system mode and the scheduler runs in Supervisor mode.\r
193         The processor MUST be in supervisor mode when vTaskStartScheduler is \r
194         called.  The demo applications included in the FreeRTOS.org download switch\r
195         to supervisor mode prior to main being called.  If you are not using one of\r
196         these demo application projects then ensure Supervisor mode is used here. */\r
197         vTaskStartScheduler();\r
198 \r
199         /* Should never reach here!  If you do then there was not enough heap\r
200         available for the idle task to be created. */\r
201         for( ;; );\r
202 }\r
203 /*-----------------------------------------------------------*/\r
204 \r
205 static void vErrorChecks( void *pvParameters )\r
206 {\r
207 portTickType xDelayPeriod = mainNO_ERROR_FLASH_PERIOD;\r
208 \r
209         /* Parameters are not used. */\r
210         ( void ) pvParameters;\r
211 \r
212         /* Cycle for ever, delaying then checking all the other tasks are still\r
213         operating without error.  If an error is detected then the delay period\r
214         is decreased from mainNO_ERROR_FLASH_PERIOD to mainERROR_FLASH_PERIOD so\r
215         the on board LED flash rate will increase.\r
216 \r
217         This task runs at the highest priority. */\r
218 \r
219         for( ;; )\r
220         {\r
221                 /* The period of the delay depends on whether an error has been \r
222                 detected or not.  If an error has been detected then the period\r
223                 is reduced to increase the LED flash rate. */\r
224                 vTaskDelay( xDelayPeriod );\r
225 \r
226                 if( prvCheckOtherTasksAreStillRunning() != pdPASS )\r
227                 {\r
228                         /* An error has been detected in one of the tasks - flash faster. */\r
229                         xDelayPeriod = mainERROR_FLASH_PERIOD;\r
230                 }\r
231 \r
232                 /* Toggle the LED before going back to wait for the next cycle. */\r
233                 vParTestToggleLED( mainCHECK_LED );\r
234         }\r
235 }\r
236 /*-----------------------------------------------------------*/\r
237 \r
238 static void prvSetupHardware( void )\r
239 {\r
240         /* Perform the hardware setup required.  This is minimal as most of the\r
241         setup is managed by the settings in the project file. */\r
242 \r
243         /* Configure the UART1 pins.  All other pins remain at their default of 0. */\r
244         PINSEL0 |= mainTX_ENABLE;\r
245         PINSEL0 |= mainRX_ENABLE;\r
246 \r
247         /* LED pins need to be output. */\r
248         IODIR1 = mainLED_TO_OUTPUT;\r
249 \r
250         /* Setup the peripheral bus to be the same as the PLL output. */\r
251         VPBDIV = mainBUS_CLK_FULL;\r
252 }\r
253 /*-----------------------------------------------------------*/\r
254 \r
255 static portLONG prvCheckOtherTasksAreStillRunning( void )\r
256 {\r
257 portLONG lReturn = pdPASS;\r
258 \r
259         /* Check all the demo tasks (other than the flash tasks) to ensure\r
260         that they are all still running, and that none of them have detected\r
261         an error. */\r
262         if( xAreComTestTasksStillRunning() != pdPASS )\r
263         {\r
264                 lReturn = pdFAIL;\r
265         }\r
266 \r
267         if( xArePollingQueuesStillRunning() != pdTRUE )\r
268         {\r
269                 lReturn = pdFAIL;\r
270         }\r
271 \r
272         if( xAreBlockingQueuesStillRunning() != pdTRUE )\r
273         {\r
274                 lReturn = pdFAIL;\r
275         }\r
276 \r
277         if( xAreSemaphoreTasksStillRunning() != pdTRUE )\r
278         {\r
279                 lReturn = pdFAIL;\r
280         }\r
281 \r
282         if( xAreDynamicPriorityTasksStillRunning() != pdTRUE )\r
283         {\r
284                 lReturn = pdFAIL;\r
285         }\r
286 \r
287         return lReturn;\r
288 }\r
289 /*-----------------------------------------------------------*/\r
290 \r
291 \r