]> git.sur5r.net Git - freertos/blob - Demo/ARM7_AT91SAM7S64_IAR/main.c
Prepare for V5.3.1 release.
[freertos] / Demo / ARM7_AT91SAM7S64_IAR / main.c
1 /*\r
2         FreeRTOS.org V5.3.1 - 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 it\r
7         under the terms of the GNU General Public License (version 2) as published\r
8         by the Free Software Foundation and modified by the FreeRTOS exception.\r
9         **NOTE** The exception to the GPL is included to allow you to distribute a\r
10         combined work that includes FreeRTOS.org without being obliged to provide\r
11         the source code for any proprietary components.  Alternative commercial\r
12         license and support terms are also available upon request.  See the \r
13         licensing section of http://www.FreeRTOS.org for full details.\r
14 \r
15         FreeRTOS.org is distributed in the hope that it will be useful, but WITHOUT\r
16         ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or\r
17         FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for\r
18         more details.\r
19 \r
20         You should have received a copy of the GNU General Public License along\r
21         with FreeRTOS.org; if not, write to the Free Software Foundation, Inc., 59\r
22         Temple Place, Suite 330, Boston, MA  02111-1307  USA.\r
23 \r
24 \r
25         ***************************************************************************\r
26         *                                                                         *\r
27         * Get the FreeRTOS eBook!  See http://www.FreeRTOS.org/Documentation      *\r
28         *                                                                         *\r
29         * This is a concise, step by step, 'hands on' guide that describes both   *\r
30         * general multitasking concepts and FreeRTOS specifics. It presents and   *\r
31         * explains numerous examples that are written using the FreeRTOS API.     *\r
32         * Full source code for all the examples is provided in an accompanying    *\r
33         * .zip file.                                                              *\r
34         *                                                                         *\r
35         ***************************************************************************\r
36 \r
37         1 tab == 4 spaces!\r
38 \r
39         Please ensure to read the configuration and relevant port sections of the\r
40         online documentation.\r
41 \r
42         http://www.FreeRTOS.org - Documentation, latest information, license and\r
43         contact details.\r
44 \r
45         http://www.SafeRTOS.com - A version that is certified for use in safety\r
46         critical systems.\r
47 \r
48         http://www.OpenRTOS.com - Commercial support, development, porting,\r
49         licensing and training services.\r
50 */\r
51 \r
52 /* \r
53         NOTE : Tasks run in system mode and the scheduler runs in Supervisor mode.\r
54         The processor MUST be in supervisor mode when vTaskStartScheduler is \r
55         called.  The demo applications included in the FreeRTOS.org download switch\r
56         to supervisor mode prior to main being called.  If you are not using one of\r
57         these demo application projects then ensure Supervisor mode is used.\r
58 */\r
59 \r
60 /*\r
61  * Creates all the demo application tasks, then starts the scheduler.  The WEB\r
62  * documentation provides more details of the demo application tasks.  The SAM7\r
63  * includes a sample USB that emulates a Joystick input to a USB host.\r
64  * \r
65  * Main.c also creates a task called "Check".  This only executes every three \r
66  * seconds but has the highest priority so is guaranteed to get processor time.  \r
67  * Its main function is to check that all the other tasks are still operational.\r
68  * Each task (other than the "flash" tasks) maintains a unique count that is \r
69  * incremented each time the task successfully completes its function.  Should \r
70  * any error occur within such a task the count is permanently halted.  The \r
71  * check task inspects the count of each task to ensure it has changed since\r
72  * the last time the check task executed.  If all the count variables have \r
73  * changed all the tasks are still executing error free, and the check task\r
74  * toggles the onboard LED.  Should any task contain an error at any time \r
75  * the LED toggle rate will change from 3 seconds to 500ms.\r
76  *\r
77  */\r
78 \r
79 /* Standard includes. */\r
80 #include <stdlib.h>\r
81 \r
82 /* Scheduler includes. */\r
83 #include "FreeRTOS.h"\r
84 #include "task.h"\r
85 \r
86 /* Demo application includes. */\r
87 #include "flash.h"\r
88 #include "integer.h"\r
89 #include "PollQ.h"\r
90 #include "BlockQ.h"\r
91 #include "semtest.h"\r
92 #include "dynamic.h"\r
93 #include "partest.h"\r
94 #include "comtest2.h"\r
95 #include "USB/USBSample.h"\r
96 \r
97 /* Priorities for the demo application tasks. */\r
98 #define mainLED_TASK_PRIORITY           ( tskIDLE_PRIORITY + 3 )\r
99 #define mainQUEUE_POLL_PRIORITY         ( tskIDLE_PRIORITY + 2 )\r
100 #define mainCHECK_TASK_PRIORITY         ( tskIDLE_PRIORITY + 4 )\r
101 #define mainSEM_TEST_PRIORITY           ( tskIDLE_PRIORITY + 1 )\r
102 #define mainBLOCK_Q_PRIORITY            ( tskIDLE_PRIORITY + 2 )\r
103 #define mainCOM_TEST_PRIORITY           ( tskIDLE_PRIORITY + 2 )\r
104 #define mainUSB_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                      ( 3 )\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 ) /* Off the board. */\r
114 \r
115 /*\r
116  * The task that executes at the highest priority and calls \r
117  * prvCheckOtherTasksAreStillRunning().  See the description at the top\r
118  * of the file.\r
119  */\r
120 static void vErrorChecks( void *pvParameters );\r
121 \r
122 /*\r
123  * Configure the processor for use with the Atmel demo board.  Setup is minimal\r
124  * as the low level init function (called from the startup asm file) takes care\r
125  * of most things.\r
126  */\r
127 static void prvSetupHardware( void );\r
128 \r
129 /*\r
130  * Checks that all the demo application tasks are still executing without error\r
131  * - as described at the top of the file.\r
132  */\r
133 static portLONG prvCheckOtherTasksAreStillRunning( void );\r
134 \r
135 \r
136 /*-----------------------------------------------------------*/\r
137 \r
138 /*\r
139  * Starts all the other tasks, then starts the scheduler. \r
140  */\r
141 void main( void )\r
142 {\r
143         /* Setup any hardware that has not already been configured by the low\r
144         level init routines. */\r
145         prvSetupHardware();\r
146 \r
147         /* Initialise the LED outputs for use by the demo application tasks. */\r
148         vParTestInitialise();\r
149 \r
150         /* Start all the standard demo application tasks. */\r
151         vStartIntegerMathTasks( tskIDLE_PRIORITY );\r
152         vStartLEDFlashTasks( mainLED_TASK_PRIORITY );\r
153         vStartPolledQueueTasks( mainQUEUE_POLL_PRIORITY );\r
154         vStartSemaphoreTasks( mainSEM_TEST_PRIORITY );\r
155         vStartBlockingQueueTasks( mainBLOCK_Q_PRIORITY );\r
156         vStartDynamicPriorityTasks();\r
157         vAltStartComTestTasks( mainCOM_TEST_PRIORITY, mainCOM_TEST_BAUD_RATE, mainCOM_TEST_LED );\r
158         \r
159         /* Also start the USB demo which is just for the SAM7. */\r
160         xTaskCreate( vUSBDemoTask, "USB", configMINIMAL_STACK_SIZE, NULL, mainUSB_PRIORITY, NULL );\r
161         \r
162         /* Start the check task - which is defined in this file. */\r
163         xTaskCreate( vErrorChecks, "Check", configMINIMAL_STACK_SIZE, NULL, mainCHECK_TASK_PRIORITY, NULL );\r
164 \r
165         /* Start the scheduler.\r
166 \r
167         NOTE : Tasks run in system mode and the scheduler runs in Supervisor mode.\r
168         The processor MUST be in supervisor mode when vTaskStartScheduler is \r
169         called.  The demo applications included in the FreeRTOS.org download switch\r
170         to supervisor mode prior to main being called.  If you are not using one of\r
171         these demo application projects then ensure Supervisor mode is used here. */\r
172 \r
173         vTaskStartScheduler();\r
174 \r
175         /* We should never get here as control is now taken by the scheduler. */\r
176         return;\r
177 }\r
178 /*-----------------------------------------------------------*/\r
179 \r
180 static void prvSetupHardware( void )\r
181 {\r
182         /* When using the JTAG debugger the hardware is not always initialised to\r
183         the correct default state.  This line just ensures that this does not\r
184         cause all interrupts to be masked at the start. */\r
185         AT91C_BASE_AIC->AIC_EOICR = 0;\r
186         \r
187         /* Most setup is performed by the low level init function called from the \r
188         startup asm file. */\r
189 \r
190         /* Configure the PIO Lines corresponding to LED1 to LED4 to be outputs as \r
191         well as the UART Tx line. */\r
192         AT91F_PIO_CfgOutput( AT91C_BASE_PIOA, LED_MASK );\r
193         \r
194         /* Enable the peripheral clock. */\r
195         AT91F_PMC_EnablePeriphClock( AT91C_BASE_PMC, 1 << AT91C_ID_PIOA );\r
196 }\r
197 /*-----------------------------------------------------------*/\r
198 \r
199 static void vErrorChecks( void *pvParameters )\r
200 {\r
201 portTickType xDelayPeriod = mainNO_ERROR_FLASH_PERIOD;\r
202 \r
203         /* The parameters are not used in this task. */\r
204         ( void ) pvParameters;\r
205 \r
206         /* Cycle for ever, delaying then checking all the other tasks are still\r
207         operating without error.  If an error is detected then the delay period\r
208         is decreased from mainNO_ERROR_FLASH_PERIOD to mainERROR_FLASH_PERIOD so\r
209         the on board LED flash rate will increase. */\r
210 \r
211         for( ;; )\r
212         {\r
213                 /* Delay until it is time to execute again. */\r
214                 vTaskDelay( xDelayPeriod );\r
215         \r
216                 /* Check all the standard demo application tasks are executing without \r
217                 error. */\r
218                 if( prvCheckOtherTasksAreStillRunning() != pdPASS )\r
219                 {\r
220                         /* An error has been detected in one of the tasks - flash faster. */\r
221                         xDelayPeriod = mainERROR_FLASH_PERIOD;\r
222                 }\r
223                 \r
224                 vParTestToggleLED( mainCHECK_TASK_LED );\r
225         }\r
226 }\r
227 /*-----------------------------------------------------------*/\r
228 \r
229 static portLONG prvCheckOtherTasksAreStillRunning( void )\r
230 {\r
231 portLONG lReturn = ( portLONG ) pdPASS;\r
232 \r
233         /* Check all the demo tasks (other than the flash tasks) to ensure\r
234         that they are all still running, and that none of them have detected\r
235         an error. */\r
236 \r
237         if( xAreIntegerMathsTaskStillRunning() != pdTRUE )\r
238         {\r
239                 lReturn = ( portLONG ) pdFAIL;\r
240         }\r
241 \r
242         if( xArePollingQueuesStillRunning() != pdTRUE )\r
243         {\r
244                 lReturn = ( portLONG ) pdFAIL;\r
245         }\r
246 \r
247         if( xAreSemaphoreTasksStillRunning() != pdTRUE )\r
248         {\r
249                 lReturn = ( portLONG ) pdFAIL;\r
250         }\r
251 \r
252         if( xAreBlockingQueuesStillRunning() != pdTRUE )\r
253         {\r
254                 lReturn = ( portLONG ) pdFAIL;\r
255         }\r
256 \r
257         if( xAreComTestTasksStillRunning() != pdTRUE )\r
258         {\r
259                 lReturn = ( portLONG ) pdFAIL;\r
260         }\r
261 \r
262         if( xAreDynamicPriorityTasksStillRunning() != pdTRUE )\r
263         {\r
264                 lReturn = ( portLONG ) pdFAIL;\r
265         }\r
266 \r
267         return lReturn;\r
268 }\r
269 /*-----------------------------------------------------------*/\r
270 \r
271 \r