]> git.sur5r.net Git - freertos/blob - Demo/MicroBlaze_Spartan-6_EthernetLite/SDKProjects/RTOSDemoSource/lwIP/lwIP_Apps/lwipcfg_MicroBlaze.h
Remove unnecessary files from the MicroBlaze http server file system creation directory.
[freertos] / Demo / MicroBlaze_Spartan-6_EthernetLite / SDKProjects / RTOSDemoSource / lwIP / lwIP_Apps / lwipcfg_MicroBlaze.h
1 /**
2  * Additional settings for the win32 port.
3  * Copy this to lwipcfg_msvc.h and make the config changes you need.
4  */
5
6 /* configuration for this port */
7 #define PPP_USERNAME  "Admin"
8 #define PPP_PASSWORD  "pass"
9
10
11 /** Define this to the GUID of the windows network adapter to use
12  * or NOT define this if you want PACKET_LIB_ADAPTER_NR to be used */ 
13 /*#define PACKET_LIB_ADAPTER_GUID       "00000000-0000-0000-0000-000000000000"*/
14 /*#define PACKET_LIB_GET_ADAPTER_NETADDRESS(addr) IP4_ADDR((addr), 192,168,1,0)*/
15 /*#define PACKET_LIB_QUIET*/
16
17 #define LWIP_PORT_INIT_IPADDR(addr)   IP4_ADDR((addr), configIP_ADDR0,configIP_ADDR1,configIP_ADDR2,configIP_ADDR3)
18 #define LWIP_PORT_INIT_GW(addr)       IP4_ADDR((addr), 192,168,0,3)
19 #define LWIP_PORT_INIT_NETMASK(addr)  IP4_ADDR((addr), 255,255,255,0)
20
21 /* remember to change this MAC address to suit your needs!
22    the last octet will be increased by netif->num for each netif */
23 #define LWIP_MAC_ADDR_BASE            {0x00,0x01,0x02,0x03,0x04,0x05}
24
25 /* configuration for applications */
26
27 #define LWIP_CHARGEN_APP              0
28 #define LWIP_DNS_APP                  0
29 #define LWIP_HTTPD_APP                1
30 /* Set this to 1 to use the netconn http server,
31  * otherwise the raw api server will be used. */
32 /*#define LWIP_HTTPD_APP_NETCONN     */
33 #define LWIP_NETBIOS_APP              0
34 #define LWIP_NETIO_APP                0
35 #define LWIP_PING_APP                 0
36 #define LWIP_RTP_APP                  0
37 #define LWIP_SHELL_APP                0
38 #define LWIP_SNTP_APP                 0
39 #define LWIP_SOCKET_EXAMPLES_APP      0
40 #define LWIP_TCPECHO_APP              0
41 /* Set this to 1 to use the netconn tcpecho server,
42  * otherwise the raw api server will be used. */
43 /*#define LWIP_TCPECHO_APP_NETCONN   */
44 #define LWIP_UDPECHO_APP              0
45
46