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