]> git.sur5r.net Git - freertos/blob - FreeRTOS/Demo/lwIP_Demo_Rowley_ARM7/main.c
Prepare for V7.3.0 release.
[freertos] / FreeRTOS / Demo / lwIP_Demo_Rowley_ARM7 / 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 application tasks, then starts the scheduler.\r
80  *\r
81  * A task defined by the function vBasicWEBServer is created.  This executes \r
82  * the lwIP stack and basic WEB server sample.  A task defined by the function\r
83  * vUSBCDCTask.  This executes the USB to serial CDC example.  All the other \r
84  * tasks are from the set of standard demo tasks.  The WEB documentation \r
85  * provides more details of the standard demo application tasks.\r
86  *\r
87  * Main.c also creates a task called "Check".  This only executes every three\r
88  * seconds but has the highest priority so is guaranteed to get processor time.\r
89  * Its main function is to check the status of all the other demo application\r
90  * tasks.  LED mainCHECK_LED is toggled every three seconds by the check task\r
91  * should no error conditions be detected in any of the standard demo tasks.\r
92  * The toggle rate increasing to 500ms indicates that at least one error has\r
93  * been detected.\r
94  *\r
95  * Main.c includes an idle hook function that simply periodically sends data\r
96  * to the USB task for transmission.\r
97  */\r
98 \r
99 /*\r
100         Changes from V3.2.2\r
101 \r
102         + Modified the stack sizes used by some tasks to permit use of the \r
103           command line GCC tools.\r
104 */\r
105 \r
106 /* Library includes. */\r
107 #include <string.h>\r
108 #include <stdio.h>\r
109 \r
110 /* Scheduler includes. */\r
111 #include "FreeRTOS.h"\r
112 #include "task.h"\r
113 \r
114 /* Demo application includes. */\r
115 #include "partest.h"\r
116 #include "PollQ.h"\r
117 #include "semtest.h"\r
118 #include "flash.h"\r
119 #include "integer.h"\r
120 #include "BlockQ.h"\r
121 #include "BasicWEB.h"\r
122 #include "USB-CDC.h"\r
123 \r
124 /* lwIP includes. */\r
125 #include "lwip/api.h" \r
126 \r
127 /* Hardware specific headers. */\r
128 #include "Board.h"\r
129 #include "AT91SAM7X256.h"\r
130 \r
131 /* Priorities/stacks for the various tasks within the demo application. */\r
132 #define mainQUEUE_POLL_PRIORITY         ( tskIDLE_PRIORITY + 1 )\r
133 #define mainCHECK_TASK_PRIORITY         ( tskIDLE_PRIORITY + 3 )\r
134 #define mainSEM_TEST_PRIORITY           ( tskIDLE_PRIORITY + 1 )\r
135 #define mainFLASH_PRIORITY                      ( tskIDLE_PRIORITY + 2 )\r
136 #define mainBLOCK_Q_PRIORITY            ( tskIDLE_PRIORITY + 1 )\r
137 #define mainWEBSERVER_PRIORITY      ( tskIDLE_PRIORITY + 2 )\r
138 #define mainUSB_PRIORITY                        ( tskIDLE_PRIORITY + 1 )\r
139 #define mainUSB_TASK_STACK                      ( 200 )\r
140 \r
141 /* The rate at which the on board LED will toggle when there is/is not an\r
142 error. */\r
143 #define mainNO_ERROR_FLASH_PERIOD       ( ( portTickType ) 3000 / portTICK_RATE_MS  )\r
144 #define mainERROR_FLASH_PERIOD          ( ( portTickType ) 500 / portTICK_RATE_MS  )\r
145 \r
146 /* The rate at which the idle hook sends data to the USB port. */\r
147 #define mainUSB_TX_FREQUENCY            ( 100 / portTICK_RATE_MS )\r
148 \r
149 /* The string that is transmitted down the USB port. */\r
150 #define mainFIRST_TX_CHAR                       'a'\r
151 #define mainLAST_TX_CHAR                        'z'\r
152 \r
153 /* The LED used by the check task to indicate the system status. */\r
154 #define mainCHECK_LED                           ( 3 )\r
155 /*-----------------------------------------------------------*/\r
156 \r
157 /*\r
158  * Checks that all the demo application tasks are still executing without error\r
159  * - as described at the top of the file.\r
160  */\r
161 static long prvCheckOtherTasksAreStillRunning( void );\r
162 \r
163 /*\r
164  * The task that executes at the highest priority and calls\r
165  * prvCheckOtherTasksAreStillRunning().  See the description at the top\r
166  * of the file.\r
167  */\r
168 static void vErrorChecks( void *pvParameters );\r
169 \r
170 /*\r
171  * Configure the processor for use with the Atmel demo board.  This is very\r
172  * minimal as most of the setup is performed in the startup code.\r
173  */\r
174 static void prvSetupHardware( void );\r
175 \r
176 /*\r
177  * The idle hook is just used to stream data to the USB port.\r
178  */\r
179 void vApplicationIdleHook( void );\r
180 /*-----------------------------------------------------------*/\r
181 \r
182 /*\r
183  * Setup hardware then start all the demo application tasks.\r
184  */\r
185 int main( void )\r
186 {\r
187         /* Setup the ports. */\r
188         prvSetupHardware();\r
189 \r
190         /* Setup the IO required for the LED's. */\r
191         vParTestInitialise();\r
192 \r
193         /* Setup lwIP. */\r
194     vlwIPInit();\r
195 \r
196         /* Create the lwIP task.  This uses the lwIP RTOS abstraction layer.*/\r
197     sys_thread_new( vBasicWEBServer, ( void * ) NULL, mainWEBSERVER_PRIORITY );\r
198 \r
199         /* Create the demo USB CDC task. */\r
200         xTaskCreate( vUSBCDCTask, ( signed char * ) "USB", mainUSB_TASK_STACK, NULL, mainUSB_PRIORITY, NULL );\r
201 \r
202         /* Create the standard demo application tasks. */\r
203         vStartPolledQueueTasks( mainQUEUE_POLL_PRIORITY );\r
204         vStartSemaphoreTasks( mainSEM_TEST_PRIORITY );\r
205         vStartLEDFlashTasks( mainFLASH_PRIORITY );\r
206         vStartIntegerMathTasks( tskIDLE_PRIORITY );\r
207         vStartBlockingQueueTasks( mainBLOCK_Q_PRIORITY );\r
208 \r
209         /* Start the check task - which is defined in this file. */     \r
210     xTaskCreate( vErrorChecks, ( signed char * ) "Check", configMINIMAL_STACK_SIZE, NULL, mainCHECK_TASK_PRIORITY, NULL );\r
211 \r
212         /* Finally, start the scheduler. \r
213 \r
214         NOTE : Tasks run in system mode and the scheduler runs in Supervisor mode.\r
215         The processor MUST be in supervisor mode when vTaskStartScheduler is \r
216         called.  The demo applications included in the FreeRTOS.org download switch\r
217         to supervisor mode prior to main being called.  If you are not using one of\r
218         these demo application projects then ensure Supervisor mode is used here. */\r
219         vTaskStartScheduler();\r
220 \r
221         /* Should never get here! */\r
222         return 0;\r
223 }\r
224 /*-----------------------------------------------------------*/\r
225 \r
226 \r
227 static void prvSetupHardware( void )\r
228 {\r
229         /* When using the JTAG debugger the hardware is not always initialised to\r
230         the correct default state.  This line just ensures that this does not\r
231         cause all interrupts to be masked at the start. */\r
232         AT91C_BASE_AIC->AIC_EOICR = 0;\r
233         \r
234         /* Most setup is performed by the low level init function called from the\r
235         startup asm file.\r
236 \r
237         Configure the PIO Lines corresponding to LED1 to LED4 to be outputs as\r
238         well as the UART Tx line. */\r
239         AT91C_BASE_PIOB->PIO_PER = LED_MASK; // Set in PIO mode\r
240         AT91C_BASE_PIOB->PIO_OER = LED_MASK; // Configure in Output\r
241 \r
242 \r
243         /* Enable the peripheral clock. */\r
244     AT91C_BASE_PMC->PMC_PCER = 1 << AT91C_ID_PIOA;\r
245     AT91C_BASE_PMC->PMC_PCER = 1 << AT91C_ID_PIOB;\r
246         AT91C_BASE_PMC->PMC_PCER = 1 << AT91C_ID_EMAC;\r
247 }\r
248 /*-----------------------------------------------------------*/\r
249 \r
250 static void vErrorChecks( void *pvParameters )\r
251 {\r
252 portTickType xDelayPeriod = mainNO_ERROR_FLASH_PERIOD;\r
253 portTickType xLastWakeTime;\r
254 \r
255         /* The parameters are not used. */\r
256         ( void ) pvParameters;\r
257 \r
258         /* Initialise xLastWakeTime to ensure the first call to vTaskDelayUntil()\r
259         functions correctly. */\r
260         xLastWakeTime = xTaskGetTickCount();\r
261 \r
262         /* Cycle for ever, delaying then checking all the other tasks are still\r
263         operating without error.  If an error is detected then the delay period\r
264         is decreased from mainNO_ERROR_FLASH_PERIOD to mainERROR_FLASH_PERIOD so\r
265         the Check LED flash rate will increase. */\r
266         for( ;; )\r
267         {\r
268                 /* Delay until it is time to execute again.  The delay period is\r
269                 shorter following an error. */\r
270                 vTaskDelayUntil( &xLastWakeTime, xDelayPeriod );\r
271         \r
272                 /* Check all the standard demo application tasks are executing without\r
273                 error.  */\r
274                 if( prvCheckOtherTasksAreStillRunning() != pdPASS )\r
275                 {\r
276                         /* An error has been detected in one of the tasks - flash faster. */\r
277                         xDelayPeriod = mainERROR_FLASH_PERIOD;\r
278                 }\r
279 \r
280                 vParTestToggleLED( mainCHECK_LED );\r
281         }\r
282 }\r
283 /*-----------------------------------------------------------*/\r
284 \r
285 static long prvCheckOtherTasksAreStillRunning( void )\r
286 {\r
287 long lReturn = ( long ) pdPASS;\r
288 \r
289         /* Check all the demo tasks (other than the flash tasks) to ensure\r
290         that they are all still running, and that none of them have detected\r
291         an error. */\r
292 \r
293         if( xArePollingQueuesStillRunning() != pdTRUE )\r
294         {\r
295                 lReturn = ( long ) pdFAIL;\r
296         }\r
297 \r
298         if( xAreSemaphoreTasksStillRunning() != pdTRUE )\r
299         {\r
300                 lReturn = ( long ) pdFAIL;\r
301         }\r
302 \r
303         if( xAreIntegerMathsTaskStillRunning() != pdTRUE )\r
304         {\r
305                 lReturn = ( long ) pdFAIL;\r
306         }\r
307 \r
308         if( xAreBlockingQueuesStillRunning() != pdTRUE )\r
309         {\r
310                 lReturn = ( long ) pdFAIL;\r
311         }\r
312 \r
313         return lReturn;\r
314 }\r
315 /*-----------------------------------------------------------*/\r
316 \r
317 void vApplicationIdleHook( void )\r
318 {\r
319 static portTickType xLastTx = 0;\r
320 char cTxByte;\r
321 \r
322         /* The idle hook simply sends a string of characters to the USB port.\r
323         The characters will be buffered and sent once the port is connected. */\r
324         if( ( xTaskGetTickCount() - xLastTx ) > mainUSB_TX_FREQUENCY )\r
325         {\r
326                 xLastTx = xTaskGetTickCount();\r
327                 for( cTxByte = mainFIRST_TX_CHAR; cTxByte <= mainLAST_TX_CHAR; cTxByte++ )\r
328                 {\r
329                         vUSBSendByte( cTxByte );\r
330                 }               \r
331         }\r
332 }\r
333 \r
334 \r