]> git.sur5r.net Git - freertos/blob - Demo/WizNET_DEMO_TERN_186/main.c
Update to V4.7.2.
[freertos] / Demo / WizNET_DEMO_TERN_186 / main.c
1 /*\r
2         FreeRTOS.org V4.7.2 - 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         Please ensure to read the configuration and relevant port sections of the \r
29         online documentation.\r
30 \r
31         +++ http://www.FreeRTOS.org +++\r
32         Documentation, latest information, license and contact details.  \r
33 \r
34         +++ http://www.SafeRTOS.com +++\r
35         A version that is certified for use in safety critical systems.\r
36 \r
37         +++ http://www.OpenRTOS.com +++\r
38         Commercial support, development, porting, licensing and training services.\r
39 \r
40         ***************************************************************************\r
41 */\r
42 \r
43 /*\r
44  * Creates all the demo application tasks then starts the scheduler.  In \r
45  * addition to the standard demo application tasks main() creates the \r
46  * HTTPServer task, and a "Check" task.  The Check task periodically inspects\r
47  * all the other tasks in the system to see if any errors have been reported.\r
48  * The error status is then displayed on the served WEB page.\r
49  */\r
50 \r
51 /* Tern includes. */\r
52 #include <ae.h>\r
53 #include <embedded.h>\r
54 \r
55 /* FreeRTOS.org includes. */\r
56 #include <FreeRTOS.h>\r
57 #include <task.h>\r
58 \r
59 /* Demo application includes. */\r
60 #include "HTTPTask.h"\r
61 #include "integer.h"\r
62 #include "PollQ.h"\r
63 #include "semtest.h"\r
64 #include "dynamic.h"\r
65 #include "BlockQ.h"\r
66 #include "death.h"\r
67 #include "serial.h"\r
68 #include "comtest.h"\r
69 \r
70 /* How often should the "check" task execute? */\r
71 #define mainCHECK_DELAY         ( 3000 / portTICK_RATE_MS )\r
72 \r
73 /* Priorities allocated to the various tasks. */\r
74 #define mainQUEUE_POLL_PRIORITY         ( tskIDLE_PRIORITY + 2 )\r
75 #define mainCHECK_TASK_PRIORITY         ( tskIDLE_PRIORITY + 4 )\r
76 #define mainSEM_TEST_PRIORITY           ( tskIDLE_PRIORITY + 1 )\r
77 #define mainBLOCK_Q_PRIORITY            ( tskIDLE_PRIORITY + 2 )\r
78 #define mainHTTP_TASK_PRIORITY          ( tskIDLE_PRIORITY + 3 )\r
79 #define mainSUICIDE_TASKS_PRIORITY  ( tskIDLE_PRIORITY + 1 )\r
80 #define mainCOM_TEST_PRIORITY           ( tskIDLE_PRIORITY + 2 )\r
81 \r
82 /* Used to indicate the error status.  A value of 0 means that an error has not\r
83 been detected in any task.  A non zero value indicates which group of demo \r
84 tasks has reported an error.  See prvCheckTask() for bit definitions. */\r
85 unsigned portSHORT usCheckStatus = 0;\r
86 \r
87 /*-----------------------------------------------------------*/\r
88 \r
89 /*\r
90  * Setup any hardware required by the demo - other than the RTOS tick which\r
91  * is configured when the scheduler is started.\r
92  */\r
93 static void prvSetupHardware( void );\r
94 \r
95 /*\r
96  * Periodically inspect all the other tasks, updating usCheckStatus should an\r
97  * error be discovered in any task.\r
98  */\r
99 static void prvCheckTask( void *pvParameters );\r
100 /*-----------------------------------------------------------*/\r
101 \r
102 void main(void)\r
103 {\r
104         prvSetupHardware();\r
105 \r
106     /* Start the HTTP server task. */\r
107         xTaskCreate( vHTTPTask, "WizNet", configMINIMAL_STACK_SIZE, NULL, mainHTTP_TASK_PRIORITY, NULL );\r
108 \r
109         /* Start the demo/test application tasks.  See the demo application \r
110         section of the FreeRTOS.org WEB site for more information. */\r
111         vStartIntegerMathTasks( tskIDLE_PRIORITY );\r
112         vStartPolledQueueTasks( mainQUEUE_POLL_PRIORITY );\r
113         vStartSemaphoreTasks( mainSEM_TEST_PRIORITY );\r
114         vStartDynamicPriorityTasks();\r
115         vStartBlockingQueueTasks( mainBLOCK_Q_PRIORITY );\r
116     vStartComTestTasks( mainCOM_TEST_PRIORITY, serCOM2, ser57600 );\r
117 \r
118         /* Start the task that checks the other demo tasks for errors. */\r
119     xTaskCreate( prvCheckTask, "Check", configMINIMAL_STACK_SIZE, NULL, mainCHECK_TASK_PRIORITY, NULL );\r
120 \r
121         /* The suicide tasks must be created last as they monitor the number of\r
122         tasks in the system to ensure there are no more or fewer than expected\r
123         compared to the number that were executing when the task started. */\r
124         vCreateSuicidalTasks( mainSUICIDE_TASKS_PRIORITY );\r
125         \r
126         /* Finally start the scheduler. */\r
127     vTaskStartScheduler();\r
128 \r
129         /* Should not get here! */\r
130         for( ;; );\r
131 }\r
132 /*-----------------------------------------------------------*/\r
133 \r
134 static void prvSetupHardware( void )\r
135 {\r
136         ae_init();\r
137 }\r
138 /*-----------------------------------------------------------*/\r
139 \r
140 static void prvCheckTask( void *pvParameters )\r
141 {\r
142         ( void ) pvParameters;\r
143 \r
144         /* Check all the demo tasks to ensure that they are all still running, and\r
145     that none of them have detected     an error. */\r
146     for( ;; )\r
147     {\r
148                 /* Block until it is time to check again. */\r
149         vTaskDelay( mainCHECK_DELAY );\r
150         \r
151                 if( xAreIntegerMathsTaskStillRunning() != pdTRUE )\r
152                 {\r
153                         usCheckStatus |= 0x01;\r
154                 }\r
155 \r
156                 if( xArePollingQueuesStillRunning() != pdTRUE )\r
157                 {\r
158                         usCheckStatus |= 0x02;\r
159                 }\r
160 \r
161                 if( xAreSemaphoreTasksStillRunning() != pdTRUE )\r
162                 {\r
163                         usCheckStatus |= 0x04;\r
164                 }\r
165 \r
166                 if( xAreDynamicPriorityTasksStillRunning() != pdTRUE )\r
167                 {\r
168                         usCheckStatus |= 0x08;\r
169                 }\r
170 \r
171                 if( xAreBlockingQueuesStillRunning() != pdTRUE )\r
172                 {\r
173                         usCheckStatus |= 0x10;\r
174                 }\r
175 \r
176         if( xIsCreateTaskStillRunning() != pdTRUE )\r
177         {\r
178                 usCheckStatus |= 0x20;\r
179         }\r
180 \r
181         if( xAreComTestTasksStillRunning() != pdTRUE )\r
182         {\r
183                 usCheckStatus |= 0x40;\r
184         }\r
185         }\r
186 }\r
187 /*-----------------------------------------------------------*/\r
188 \r
189 /* This is included to prevent link errors - allowing the 'full' version of\r
190 the comtest tasks to be used.  It can be ignored. */\r
191 void vPrintDisplayMessage( const portCHAR * const * ppcMessageToSend )\r
192 {\r
193         ( void ) ppcMessageToSend;\r
194 }\r
195 \r
196 \r
197 \r
198 \r
199 \r
200 \r
201 \r
202 \r
203 \r
204 \r
205 \r
206 \r