2 FreeRTOS V8.2.2 - Copyright (C) 2015 Real Time Engineers Ltd.
\r
5 VISIT http://www.FreeRTOS.org TO ENSURE YOU ARE USING THE LATEST VERSION.
\r
7 This file is part of the FreeRTOS distribution.
\r
9 FreeRTOS is free software; you can redistribute it and/or modify it under
\r
10 the terms of the GNU General Public License (version 2) as published by the
\r
11 Free Software Foundation >>!AND MODIFIED BY!<< the FreeRTOS exception.
\r
13 ***************************************************************************
\r
14 >>! NOTE: The modification to the GPL is included to allow you to !<<
\r
15 >>! distribute a combined work that includes FreeRTOS without being !<<
\r
16 >>! obliged to provide the source code for proprietary components !<<
\r
17 >>! outside of the FreeRTOS kernel. !<<
\r
18 ***************************************************************************
\r
20 FreeRTOS is distributed in the hope that it will be useful, but WITHOUT ANY
\r
21 WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
\r
22 FOR A PARTICULAR PURPOSE. Full license text is available on the following
\r
23 link: http://www.freertos.org/a00114.html
\r
25 ***************************************************************************
\r
27 * FreeRTOS provides completely free yet professionally developed, *
\r
28 * robust, strictly quality controlled, supported, and cross *
\r
29 * platform software that is more than just the market leader, it *
\r
30 * is the industry's de facto standard. *
\r
32 * Help yourself get started quickly while simultaneously helping *
\r
33 * to support the FreeRTOS project by purchasing a FreeRTOS *
\r
34 * tutorial book, reference manual, or both: *
\r
35 * http://www.FreeRTOS.org/Documentation *
\r
37 ***************************************************************************
\r
39 http://www.FreeRTOS.org/FAQHelp.html - Having a problem? Start by reading
\r
40 the FAQ page "My application does not run, what could be wrong?". Have you
\r
41 defined configASSERT()?
\r
43 http://www.FreeRTOS.org/support - In return for receiving this top quality
\r
44 embedded software for free we request you assist our global community by
\r
45 participating in the support forum.
\r
47 http://www.FreeRTOS.org/training - Investing in training allows your team to
\r
48 be as productive as possible as early as possible. Now you can receive
\r
49 FreeRTOS training directly from Richard Barry, CEO of Real Time Engineers
\r
50 Ltd, and the world's leading authority on the world's leading RTOS.
\r
52 http://www.FreeRTOS.org/plus - A selection of FreeRTOS ecosystem products,
\r
53 including FreeRTOS+Trace - an indispensable productivity tool, a DOS
\r
54 compatible FAT file system, and our tiny thread aware UDP/IP stack.
\r
56 http://www.FreeRTOS.org/labs - Where new FreeRTOS products go to incubate.
\r
57 Come and try FreeRTOS+TCP, our new open source TCP/IP stack for FreeRTOS.
\r
59 http://www.OpenRTOS.com - Real Time Engineers ltd. license FreeRTOS to High
\r
60 Integrity Systems ltd. to sell under the OpenRTOS brand. Low cost OpenRTOS
\r
61 licenses offer ticketed support, indemnification and commercial middleware.
\r
63 http://www.SafeRTOS.com - High Integrity Systems also provide a safety
\r
64 engineered and independently SIL3 certified version for use in safety and
\r
65 mission critical applications that require provable dependability.
\r
70 /* Standard includes. */
\r
73 /* Scheduler includes. */
\r
74 #include "FreeRTOS.h"
\r
79 #include "net/uip.h"
\r
80 #include "net/uip_arp.h"
\r
81 #include "apps/httpd/httpd.h"
\r
82 #include "sys/timer.h"
\r
83 #include "net/clock-arch.h"
\r
85 /* Demo includes. */
\r
86 #include "ParTest.h"
\r
88 /* Hardware includes. */
\r
89 #include "hwEthernet.h"
\r
91 /*-----------------------------------------------------------*/
\r
93 /* How long to wait before attempting to connect the MAC again. */
\r
94 #define uipINIT_WAIT ( 100 / portTICK_PERIOD_MS )
\r
96 /* Shortcut to the header within the Rx buffer. */
\r
97 #define xHeader ((struct uip_eth_hdr *) &uip_buf[ 0 ])
\r
99 /* Standard constant. */
\r
100 #define uipTOTAL_FRAME_HEADER_SIZE 54
\r
102 /*-----------------------------------------------------------*/
\r
105 * Setup the MAC address in the MAC itself, and in the uIP stack.
\r
107 static void prvSetMACAddress( void );
\r
110 * Port functions required by the uIP stack.
\r
112 void clock_init( void );
\r
113 clock_time_t clock_time( void );
\r
115 /*-----------------------------------------------------------*/
\r
117 /* The semaphore used by the ISR to wake the uIP task. */
\r
118 SemaphoreHandle_t xEMACSemaphore = NULL;
\r
120 /*-----------------------------------------------------------*/
\r
122 void clock_init(void)
\r
124 /* This is done when the scheduler starts. */
\r
126 /*-----------------------------------------------------------*/
\r
128 clock_time_t clock_time( void )
\r
130 return xTaskGetTickCount();
\r
132 /*-----------------------------------------------------------*/
\r
134 void vuIP_Task( void *pvParameters )
\r
137 uip_ipaddr_t xIPAddr;
\r
138 struct timer periodic_timer, arp_timer;
\r
139 extern void ( vEMAC_ISR_Wrapper )( void );
\r
141 ( void ) pvParameters;
\r
143 /* Initialise the uIP stack. */
\r
144 timer_set( &periodic_timer, configTICK_RATE_HZ / 2 );
\r
145 timer_set( &arp_timer, configTICK_RATE_HZ * 10 );
\r
147 uip_ipaddr( &xIPAddr, configIP_ADDR0, configIP_ADDR1, configIP_ADDR2, configIP_ADDR3 );
\r
148 uip_sethostaddr( &xIPAddr );
\r
149 uip_ipaddr( &xIPAddr, configNET_MASK0, configNET_MASK1, configNET_MASK2, configNET_MASK3 );
\r
150 uip_setnetmask( &xIPAddr );
\r
151 prvSetMACAddress();
\r
154 /* Create the semaphore used to wake the uIP task. */
\r
155 vSemaphoreCreateBinary( xEMACSemaphore );
\r
157 /* Initialise the MAC. */
\r
160 while( lEMACWaitForLink() != pdPASS )
\r
162 vTaskDelay( uipINIT_WAIT );
\r
167 /* Is there received data ready to be processed? */
\r
168 uip_len = ( unsigned short ) ulEMACRead();
\r
170 if( ( uip_len > 0 ) && ( uip_buf != NULL ) )
\r
172 /* Standard uIP loop taken from the uIP manual. */
\r
173 if( xHeader->type == htons( UIP_ETHTYPE_IP ) )
\r
178 /* If the above function invocation resulted in data that
\r
179 should be sent out on the network, the global variable
\r
180 uip_len is set to a value > 0. */
\r
187 else if( xHeader->type == htons( UIP_ETHTYPE_ARP ) )
\r
191 /* If the above function invocation resulted in data that
\r
192 should be sent out on the network, the global variable
\r
193 uip_len is set to a value > 0. */
\r
202 if( timer_expired( &periodic_timer ) && ( uip_buf != NULL ) )
\r
204 timer_reset( &periodic_timer );
\r
205 for( i = 0; i < UIP_CONNS; i++ )
\r
209 /* If the above function invocation resulted in data that
\r
210 should be sent out on the network, the global variable
\r
211 uip_len is set to a value > 0. */
\r
219 /* Call the ARP timer function every 10 seconds. */
\r
220 if( timer_expired( &arp_timer ) )
\r
222 timer_reset( &arp_timer );
\r
228 /* We did not receive a packet, and there was no periodic
\r
229 processing to perform. Block for a fixed period. If a packet
\r
230 is received during this period we will be woken by the ISR
\r
231 giving us the Semaphore. */
\r
232 xSemaphoreTake( xEMACSemaphore, configTICK_RATE_HZ / 2 );
\r
237 /*-----------------------------------------------------------*/
\r
239 static void prvSetMACAddress( void )
\r
241 struct uip_eth_addr xAddr;
\r
243 /* Configure the MAC address in the uIP stack. */
\r
244 xAddr.addr[ 0 ] = configMAC_ADDR0;
\r
245 xAddr.addr[ 1 ] = configMAC_ADDR1;
\r
246 xAddr.addr[ 2 ] = configMAC_ADDR2;
\r
247 xAddr.addr[ 3 ] = configMAC_ADDR3;
\r
248 xAddr.addr[ 4 ] = configMAC_ADDR4;
\r
249 xAddr.addr[ 5 ] = configMAC_ADDR5;
\r
250 uip_setethaddr( xAddr );
\r
252 /*-----------------------------------------------------------*/
\r
254 void vApplicationProcessFormInput( char *pcInputString )
\r
258 /* Process the form input sent by the IO page of the served HTML. */
\r
260 c = strstr( pcInputString, "?" );
\r
263 /* Turn the FIO1 LED's on or off in accordance with the check box status. */
\r
264 if( strstr( c, "LED0=1" ) != NULL )
\r
266 /* Turn LED 4 on. */
\r
267 vParTestSetLED( 4, 1 );
\r
271 /* Turn LED 4 off. */
\r
272 vParTestSetLED( 4, 0 );
\r