]> git.sur5r.net Git - freertos/blob - FreeRTOS-Plus/Demo/FreeRTOS_Plus_UDP_and_CLI_LPC1830_GCC/main.c
Change version number in common files within the FreeRTOS-plus directory and check...
[freertos] / FreeRTOS-Plus / Demo / FreeRTOS_Plus_UDP_and_CLI_LPC1830_GCC / main.c
1 /*\r
2     FreeRTOS V7.4.0 - Copyright (C) 2013 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 \r
33     >>>>>>NOTE<<<<<< The modification to the GPL is included to allow you to\r
34     distribute a combined work that includes FreeRTOS without being obliged to\r
35     provide the source code for proprietary components outside of the FreeRTOS\r
36     kernel.\r
37 \r
38     FreeRTOS is distributed in the hope that it will be useful, but WITHOUT ANY\r
39     WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS\r
40     FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more\r
41     details. You should have received a copy of the GNU General Public License\r
42     and the FreeRTOS license exception along with FreeRTOS; if not itcan be\r
43     viewed here: http://www.freertos.org/a00114.html and also obtained by\r
44     writing to Real Time Engineers Ltd., contact details for whom are available\r
45     on the FreeRTOS WEB site.\r
46 \r
47     1 tab == 4 spaces!\r
48 \r
49     ***************************************************************************\r
50      *                                                                       *\r
51      *    Having a problem?  Start by reading the FAQ "My application does   *\r
52      *    not run, what could be wrong?"                                     *\r
53      *                                                                       *\r
54      *    http://www.FreeRTOS.org/FAQHelp.html                               *\r
55      *                                                                       *\r
56     ***************************************************************************\r
57 \r
58 \r
59     http://www.FreeRTOS.org - Documentation, books, training, latest versions,\r
60     license and Real Time Engineers Ltd. contact details.\r
61 \r
62     http://www.FreeRTOS.org/plus - A selection of FreeRTOS ecosystem products,\r
63     including FreeRTOS+Trace - an indispensable productivity tool, and our new\r
64     fully thread aware and reentrant UDP/IP stack.\r
65 \r
66     http://www.OpenRTOS.com - Real Time Engineers ltd license FreeRTOS to High\r
67     Integrity Systems, who sell the code with commercial support,\r
68     indemnification and middleware, under the OpenRTOS brand.\r
69 \r
70     http://www.SafeRTOS.com - High Integrity Systems also provide a safety\r
71     engineered and independently SIL3 certified version for use in safety and\r
72     mission critical applications that require provable dependability.\r
73 */\r
74 /* Standard includes. */\r
75 #include <string.h>\r
76 #include <stdio.h>\r
77 \r
78 /* FreeRTOS includes. */\r
79 #include "FreeRTOS.h"\r
80 #include "task.h"\r
81 #include "timers.h"\r
82 #include "queue.h"\r
83 \r
84 /* FreeRTOS+UDP includes. */\r
85 #include "FreeRTOS_UDP_IP.h"\r
86 #include "FreeRTOS_Sockets.h"\r
87 \r
88 /* Example includes. */\r
89 #include "TwoEchoClients.h"\r
90 #include "CDCCommandConsole.h"\r
91 \r
92 /* Library includes. */\r
93 #include "LPC18xx.h"\r
94 \r
95 /* The size of the stack and the priority used by the two echo client tasks. */\r
96 #define mainECHO_CLIENT_TASK_STACK_SIZE         ( configMINIMAL_STACK_SIZE * 2 )\r
97 #define mainECHO_CLIENT_TASK_PRIORITY           ( tskIDLE_PRIORITY + 1 )\r
98 \r
99 /* The size of the stack and the priority used by the USB CDC command console\r
100 task. */\r
101 #define mainCDC_COMMAND_CONSOLE_STACK_SIZE              ( configMINIMAL_STACK_SIZE * 2 )\r
102 #define mainCDC_COMMAND_CONSOLE_TASK_PRIORITY   ( 4U )\r
103 \r
104 /*\r
105 * Register commands that can be used with FreeRTOS+CLI.  The commands are\r
106 * defined in CLI-commands.c.\r
107 */\r
108 extern void vRegisterCLICommands( void );\r
109 \r
110 /*\r
111  * Initialise the LED ports, and create a timer that periodically toggles an LED\r
112  * just to provide a visual indication that the program is running.\r
113  */\r
114 extern void vLEDsInitialise( void );\r
115 \r
116 /*-----------------------------------------------------------*/\r
117 \r
118 /* The default IP and MAC address used by the demo.  The address configuration\r
119 defined here will be used if ipconfigUSE_DHCP is 0, or if ipconfigUSE_DHCP is\r
120 1 but a DHCP server could not be contacted.  See the online documentation for\r
121 more information. */\r
122 static const uint8_t ucIPAddress[ 4 ] = { configIP_ADDR0, configIP_ADDR1, configIP_ADDR2, configIP_ADDR3 };\r
123 static const uint8_t ucNetMask[ 4 ] = { configNET_MASK0, configNET_MASK1, configNET_MASK2, configNET_MASK3 };\r
124 static const uint8_t ucGatewayAddress[ 4 ] = { configGATEWAY_ADDR0, configGATEWAY_ADDR1, configGATEWAY_ADDR2, configGATEWAY_ADDR3 };\r
125 static const uint8_t ucDNSServerAddress[ 4 ] = { configDNS_SERVER_ADDR0, configDNS_SERVER_ADDR1, configDNS_SERVER_ADDR2, configDNS_SERVER_ADDR3 };\r
126 \r
127 /* The MAC address used by the demo.  In production units the MAC address would\r
128 probably be read from flash memory or an EEPROM.  Here it is just hard coded. */\r
129 const uint8_t ucMACAddress[ 6 ] = { configMAC_ADDR0, configMAC_ADDR1, configMAC_ADDR2, configMAC_ADDR3, configMAC_ADDR4, configMAC_ADDR5 };\r
130 \r
131 /*-----------------------------------------------------------*/\r
132 \r
133 \r
134 /******************************************************************************\r
135  *\r
136  * See the following web page for information on using this demo.\r
137  * http://www.FreeRTOS.org/FreeRTOS-Plus/FreeRTOS_Plus_UDP/Embedded_Ethernet_Examples/RTOS_UDP_and_CLI_LPC1830_NGX.shtml\r
138  *\r
139  ******************************************************************************/\r
140 \r
141 \r
142 int main( void )\r
143 {\r
144         /* The examples assume that all priority bits are assigned as preemption\r
145         priority bits. */\r
146         NVIC_SetPriorityGrouping( 0UL );\r
147 \r
148         /* Start the timer that just toggles an LED to show the demo is running. */\r
149         vLEDsInitialise();\r
150 \r
151         /* Start the tasks that implements the command console on the UART, as\r
152         described above. */\r
153         vCDCCommandConsoleStart( mainCDC_COMMAND_CONSOLE_STACK_SIZE, mainCDC_COMMAND_CONSOLE_TASK_PRIORITY );\r
154 \r
155         /* Register CLI commands. */\r
156         vRegisterCLICommands();\r
157 \r
158         /* Initialise the network interface.  Tasks that use the network are\r
159         created in the network event hook when the network is connected and ready\r
160         for use.  The address values passed in here are used if ipconfigUSE_DHCP is\r
161         set to 0, or if ipconfigUSE_DHCP is set to 1 but a DHCP server cannot be\r
162         contacted. */\r
163         FreeRTOS_IPInit( ucIPAddress, ucNetMask, ucGatewayAddress, ucDNSServerAddress, ucMACAddress );\r
164 \r
165         /* If the trace recorder code is included... */\r
166         #if configINCLUDE_TRACE_RELATED_CLI_COMMANDS == 1\r
167         {\r
168                 extern xQueueHandle xNetworkEventQueue;\r
169 \r
170                 /* Name the queue for viewing in FreeRTOS+Trace. */\r
171                 vTraceSetQueueName( xNetworkEventQueue, "IPStackEvent" );\r
172         }\r
173         #endif /*  configINCLUDE_TRACE_RELATED_CLI_COMMANDS == 1 */\r
174 \r
175         /* Start the FreeRTOS scheduler. */\r
176         vTaskStartScheduler();\r
177 \r
178         /* The following line should never execute.  If it does, it means there was\r
179         insufficient FreeRTOS heap memory available to create the Idle and/or timer\r
180         tasks.  See the memory management section on the http://www.FreeRTOS.org web\r
181         site for more information. */\r
182         for( ;; );\r
183 }\r
184 /*-----------------------------------------------------------*/\r
185 \r
186 void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )\r
187 {\r
188         ( void ) pcTaskName;\r
189         ( void ) pxTask;\r
190 \r
191         /* Run time stack overflow checking is performed if\r
192         configCHECK_FOR_STACK_OVERFLOW is defined to 1 or 2.  This hook\r
193         function is called if a stack overflow is detected. */\r
194         taskDISABLE_INTERRUPTS();\r
195         for( ;; );\r
196 }\r
197 /*-----------------------------------------------------------*/\r
198 \r
199 void vApplicationMallocFailedHook( void )\r
200 {\r
201         /* vApplicationMallocFailedHook() will only be called if\r
202         configUSE_MALLOC_FAILED_HOOK is set to 1 in FreeRTOSConfig.h.  It is a hook\r
203         function that will get called if a call to pvPortMalloc() fails.\r
204         pvPortMalloc() is called internally by the kernel whenever a task, queue,\r
205         timer or semaphore is created.  It is also called by various parts of the\r
206         demo application.  If heap_1.c, heap_2.c or heap_4.c are used, then the\r
207         size of the heap available to pvPortMalloc() is defined by\r
208         configTOTAL_HEAP_SIZE in FreeRTOSConfig.h, and the xPortGetFreeHeapSize()\r
209         API function can be used to query the size of free heap space that remains\r
210         (although it does not provide information on how the remaining heap might\r
211         be fragmented). */\r
212         taskDISABLE_INTERRUPTS();\r
213         for( ;; );\r
214 }\r
215 /*-----------------------------------------------------------*/\r
216 \r
217 /* Called by FreeRTOS+UDP when the network connects. */\r
218 void vApplicationIPNetworkEventHook( eIPCallbackEvent_t eNetworkEvent )\r
219 {\r
220 static portBASE_TYPE xTaskAlreadyCreated = pdFALSE;\r
221 \r
222         if( eNetworkEvent == eNetworkUp )\r
223         {\r
224                 /* Create the tasks that transmit to and receive from a standard\r
225                 echo server (see the web documentation for this port) in both\r
226                 standard and zero copy mode. */\r
227                 if( xTaskAlreadyCreated == pdFALSE )\r
228                 {\r
229                         vStartEchoClientTasks( mainECHO_CLIENT_TASK_STACK_SIZE, mainECHO_CLIENT_TASK_PRIORITY );\r
230                         xTaskAlreadyCreated = pdTRUE;\r
231                 }\r
232         }\r
233 }\r
234 /*-----------------------------------------------------------*/\r
235 \r
236 /* Called by FreeRTOS+UDP when a reply is received to an outgoing ping request. */\r
237 void vApplicationPingReplyHook( ePingReplyStatus_t eStatus, uint16_t usIdentifier )\r
238 {\r
239 static const uint8_t *pucSuccess = ( uint8_t * ) "\r\n\r\nPing reply received - ";\r
240 static const uint8_t *pucInvalidChecksum = ( uint8_t * ) "\r\n\r\nPing reply received with invalid checksum - ";\r
241 static const uint8_t *pucInvalidData = ( uint8_t * ) "\r\n\r\nPing reply received with invalid data - ";\r
242 static uint8_t ucMessage[ 50 ];\r
243 void vOutputString( const uint8_t * const pucMessage );\r
244 \r
245         switch( eStatus )\r
246         {\r
247                 case eSuccess   :\r
248                         vOutputString( pucSuccess );\r
249                         break;\r
250 \r
251                 case eInvalidChecksum :\r
252                         vOutputString( pucInvalidChecksum );\r
253                         break;\r
254 \r
255                 case eInvalidData :\r
256                         vOutputString( pucInvalidData );\r
257                         break;\r
258 \r
259                 default :\r
260                         /* It is not possible to get here as all enums have their own\r
261                         case. */\r
262                         break;\r
263         }\r
264 \r
265         sprintf( ( char * ) ucMessage, "identifier %d\r\n\r\n", ( int ) usIdentifier );\r
266         vOutputString( ucMessage );\r
267 }\r
268 \r