]> git.sur5r.net Git - freertos/blob - Demo/uIP_Demo_IAR_ARM7/main.c
Update ready for V5.1.0 release.
[freertos] / Demo / uIP_Demo_IAR_ARM7 / main.c
1 /*\r
2         FreeRTOS.org V5.1.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  * Creates all the application tasks, then starts the scheduler.\r
52  *\r
53  * A task is also created called "uIP".  This executes the uIP stack and small\r
54  * WEB server sample.  All the other tasks are from the set of standard\r
55  * demo tasks.  The WEB documentation provides more details of the standard\r
56  * demo application tasks.\r
57  *\r
58  * Main.c also creates a task called "Check".  This only executes every three\r
59  * seconds but has the highest priority so is guaranteed to get processor time.\r
60  * Its main function is to check the status of all the other demo application\r
61  * tasks.  LED mainCHECK_LED is toggled every three seconds by the check task\r
62  * should no error conditions be detected in any of the standard demo tasks.\r
63  * The toggle rate increasing to 500ms indicates that at least one error has\r
64  * been detected.\r
65  */\r
66 \r
67 \r
68 /* Standard includes. */\r
69 #include <stdlib.h>\r
70 #include <string.h>\r
71 \r
72 /* Scheduler includes. */\r
73 #include "FreeRTOS.h"\r
74 #include "task.h"\r
75 \r
76 /* Demo application includes. */\r
77 #include "partest.h"\r
78 #include "PollQ.h"\r
79 #include "dynamic.h"\r
80 #include "semtest.h"\r
81 #include "flash.h"\r
82 #include "integer.h"\r
83 #include "flop.h"\r
84 #include "BlockQ.h"\r
85 #include "death.h"\r
86 #include "uip_task.h"\r
87 \r
88 /*-----------------------------------------------------------*/\r
89 \r
90 /* Priorities/stacks for the demo application tasks. */\r
91 #define mainQUEUE_POLL_PRIORITY         ( tskIDLE_PRIORITY + 1 )\r
92 #define mainCHECK_TASK_PRIORITY         ( tskIDLE_PRIORITY + 3 )\r
93 #define mainSEM_TEST_PRIORITY           ( tskIDLE_PRIORITY + 1 )\r
94 #define mainUIP_PRIORITY                        ( tskIDLE_PRIORITY + 3 )\r
95 #define mainFLASH_PRIORITY                      ( tskIDLE_PRIORITY + 2 )\r
96 #define mainBLOCK_Q_PRIORITY            ( tskIDLE_PRIORITY + 1 )\r
97 #define mainDEATH_PRIORITY                      ( tskIDLE_PRIORITY + 2 )\r
98 #define mainUIP_TASK_STACK_SIZE         ( 250 )\r
99 \r
100 /* The rate at which the on board LED will toggle when there is/is not an\r
101 error. */\r
102 #define mainNO_ERROR_FLASH_PERIOD       ( ( portTickType ) 3000 / portTICK_RATE_MS  )\r
103 #define mainERROR_FLASH_PERIOD          ( ( portTickType ) 500 / portTICK_RATE_MS  )\r
104 \r
105 /* The LED used by the check task to indicate the system status. */\r
106 #define mainCHECK_LED                           ( 3 )\r
107 /*-----------------------------------------------------------*/\r
108 \r
109 /*\r
110  * Checks that all the demo application tasks are still executing without error\r
111  * - as described at the top of the file.\r
112  */\r
113 static portLONG prvCheckOtherTasksAreStillRunning( void );\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.  This is very\r
124  * minimal as most of the setup is performed in the startup code.\r
125  */\r
126 static void prvSetupHardware( void );\r
127 \r
128 /*-----------------------------------------------------------*/\r
129 \r
130 /*\r
131  * Starts all the other tasks, then starts the scheduler.\r
132  */\r
133 int main( void )\r
134 {\r
135         /* Configure the processor. */\r
136         prvSetupHardware();\r
137 \r
138         /* Setup the port used to flash the LED's. */\r
139         vParTestInitialise();\r
140 \r
141         /* Start the task that handles the TCP/IP and WEB server functionality. */\r
142     xTaskCreate( vuIP_TASK, "uIP", mainUIP_TASK_STACK_SIZE, NULL, mainUIP_PRIORITY, NULL );\r
143         \r
144         /* Start the demo/test application tasks.  These are created in addition\r
145         to the TCP/IP task for demonstration and test purposes. */\r
146         vStartPolledQueueTasks( mainQUEUE_POLL_PRIORITY );\r
147         vStartDynamicPriorityTasks();\r
148         vStartSemaphoreTasks( mainSEM_TEST_PRIORITY );\r
149         vStartLEDFlashTasks( mainFLASH_PRIORITY );\r
150         vStartIntegerMathTasks( tskIDLE_PRIORITY );\r
151         vStartMathTasks( tskIDLE_PRIORITY );\r
152         vStartBlockingQueueTasks( mainBLOCK_Q_PRIORITY );\r
153 \r
154         /* Start the check task - which is defined in this file. */     \r
155     xTaskCreate( vErrorChecks, "Check", configMINIMAL_STACK_SIZE, NULL, mainCHECK_TASK_PRIORITY, NULL );\r
156 \r
157         /* Must be last to get created. */\r
158         vCreateSuicidalTasks( mainDEATH_PRIORITY );\r
159 \r
160         /* Now all the tasks have been started - start the scheduler. */\r
161         vTaskStartScheduler();\r
162 \r
163         /* Should never reach here because the tasks should now be executing! */\r
164         return 0;\r
165 }\r
166 /*-----------------------------------------------------------*/\r
167 \r
168 static void prvSetupHardware( void )\r
169 {\r
170         /* When using the JTAG debugger the hardware is not always initialised to\r
171         the correct default state.  This line just ensures that this does not\r
172         cause all interrupts to be masked at the start. */\r
173         AT91C_BASE_AIC->AIC_EOICR = 0;\r
174         \r
175         /* Most setup is performed by the low level init function called from the\r
176         startup asm file.\r
177 \r
178         Configure the PIO Lines corresponding to LED1 to LED4 to be outputs as\r
179         well as the UART Tx line. */\r
180         AT91F_PIO_CfgOutput( AT91C_BASE_PIOB, LED_MASK );\r
181 \r
182         /* Enable the peripheral clock. */\r
183         AT91F_PMC_EnablePeriphClock( AT91C_BASE_PMC, 1 << AT91C_ID_PIOA );\r
184         AT91F_PMC_EnablePeriphClock( AT91C_BASE_PMC, 1 << AT91C_ID_PIOB ) ;\r
185         AT91F_PMC_EnablePeriphClock( AT91C_BASE_PMC, 1 << AT91C_ID_EMAC ) ;\r
186 }\r
187 /*-----------------------------------------------------------*/\r
188 \r
189 static void vErrorChecks( void *pvParameters )\r
190 {\r
191 portTickType xDelayPeriod = mainNO_ERROR_FLASH_PERIOD;\r
192 portTickType xLastWakeTime;\r
193 \r
194         /* Initialise xLastWakeTime to ensure the first call to vTaskDelayUntil()\r
195         functions correctly. */\r
196         xLastWakeTime = xTaskGetTickCount();\r
197 \r
198         /* Cycle for ever, delaying then checking all the other tasks are still\r
199         operating without error.  If an error is detected then the delay period\r
200         is decreased from mainNO_ERROR_FLASH_PERIOD to mainERROR_FLASH_PERIOD so\r
201         the Check LED flash rate will increase. */\r
202         for( ;; )\r
203         {\r
204                 /* Delay until it is time to execute again.  The delay period is\r
205                 shorter following an error. */\r
206                 vTaskDelayUntil( &xLastWakeTime, xDelayPeriod );\r
207         \r
208                 /* Check all the standard demo application tasks are executing without\r
209                 error.  */\r
210                 if( prvCheckOtherTasksAreStillRunning() != pdPASS )\r
211                 {\r
212                         /* An error has been detected in one of the tasks - flash faster. */\r
213                         xDelayPeriod = mainERROR_FLASH_PERIOD;\r
214                 }\r
215 \r
216                 vParTestToggleLED( mainCHECK_LED );\r
217         }\r
218 }\r
219 /*-----------------------------------------------------------*/\r
220 \r
221 static portLONG prvCheckOtherTasksAreStillRunning( void )\r
222 {\r
223 portLONG lReturn = ( portLONG ) pdPASS;\r
224 \r
225 \r
226         /* Check all the demo tasks (other than the flash tasks) to ensure\r
227         that they are all still running, and that none of them have detected\r
228         an error. */\r
229 \r
230         if( xArePollingQueuesStillRunning() != pdTRUE )\r
231         {\r
232                 lReturn = ( portLONG ) pdFAIL;\r
233         }\r
234 \r
235         if( xAreDynamicPriorityTasksStillRunning() != pdTRUE )\r
236         {\r
237                 lReturn = ( portLONG ) pdFAIL;\r
238         }\r
239 \r
240         if( xAreSemaphoreTasksStillRunning() != pdTRUE )\r
241         {\r
242                 lReturn = ( portLONG ) pdFAIL;\r
243         }\r
244 \r
245         if( xAreIntegerMathsTaskStillRunning() != pdTRUE )\r
246         {\r
247                 lReturn = ( portLONG ) pdFAIL;\r
248         }\r
249 \r
250         if( xAreMathsTaskStillRunning() != pdTRUE )\r
251         {\r
252                 lReturn = ( portLONG ) pdFAIL;\r
253         }\r
254 \r
255         if( xAreBlockingQueuesStillRunning() != pdTRUE )\r
256         {\r
257                 lReturn = ( portLONG ) pdFAIL;\r
258         }\r
259 \r
260         if( xIsCreateTaskStillRunning() != pdTRUE )\r
261         {\r
262                 lReturn = ( portLONG ) pdFAIL;\r
263         }\r
264 \r
265         return lReturn;\r
266 }\r
267 \r
268 \r
269 \r