diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2010-02-12 07:54:28 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2010-02-12 07:54:28 +0000 |
commit | c6f21fde628193c7957d84792215ecaa14d5beb7 (patch) | |
tree | 9aa760996ff2f126414f32fce7ff65d426556851 /Projects/Webserver/makefile | |
parent | 8154331da60ac08b0e2b09ca67008ec4a8c7698b (diff) | |
download | lufa-c6f21fde628193c7957d84792215ecaa14d5beb7.tar.gz lufa-c6f21fde628193c7957d84792215ecaa14d5beb7.tar.bz2 lufa-c6f21fde628193c7957d84792215ecaa14d5beb7.zip |
Speed up Webserver demo data rate by not sending a full ethernet frame each time, preventing the receiver from using a delayed ACK scheme which slows down the connection. TELNET server cleanup.
Diffstat (limited to 'Projects/Webserver/makefile')
-rw-r--r-- | Projects/Webserver/makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Projects/Webserver/makefile b/Projects/Webserver/makefile index d5eda4c44..a813b8ac6 100644 --- a/Projects/Webserver/makefile +++ b/Projects/Webserver/makefile @@ -200,8 +200,9 @@ CSTANDARD = -std=gnu99 # Place -D or -U options here for C sources
CDEFS = -DF_CPU=$(F_CPU)UL -DF_CLOCK=$(F_CLOCK)UL -DBOARD=BOARD_$(BOARD) $(LUFA_OPTS)
CDEFS += -DENABLE_DHCP_CLIENT
+CDEFS += -DMAX_URI_LENGTH=50
-CDEFS += -DUIP_CONF_UDP="defined(ENABLE_DHCP_CLIENT)" -DUIP_CONF_TCP=1 -DUIP_CONF_UDP_CONNS=1 -DUIP_CONF_MAX_CONNECTIONS=5
+CDEFS += -DUIP_CONF_UDP="defined(ENABLE_DHCP_CLIENT)" -DUIP_CONF_TCP=1 -DUIP_CONF_UDP_CONNS=1 -DUIP_CONF_MAX_CONNECTIONS=3
CDEFS += -DUIP_CONF_MAX_LISTENPORTS=5 -DUIP_URGDATA=0 -DUIP_CONF_BUFFER_SIZE=1514 -DUIP_ARCH_CHKSUM=0
CDEFS += -DUIP_CONF_LL_802154=0 -DUIP_CONF_LL_80211=0 -DUIP_CONF_ROUTER=0 -DUIP_CONF_ICMP6=0
CDEFS += -DUIP_ARCH_ADD32=0 -DUIP_CONF_ICMP_DEST_UNREACH=1 -DUIP_NEIGHBOR_CONF_ADDRTYPE=0
|