lwip - Reduced buffer used for packet-pressure tests

A larger buffer gives the network stack the best options for maximizing
throughput. However, the initial buffer size did not fit on small
targets. Resized 8192 -> 1024.
pull/3265/head
Christopher Haster 2016-11-15 10:31:24 -06:00
parent 0d42ba6401
commit 2295e40fc0
2 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,7 @@
#endif
#ifndef MBED_CFG_TCP_CLIENT_PACKET_PRESSURE_BUFFER
#define MBED_CFG_TCP_CLIENT_PACKET_PRESSURE_BUFFER 8192
#define MBED_CFG_TCP_CLIENT_PACKET_PRESSURE_BUFFER 1024
#endif
#ifndef MBED_CFG_TCP_CLIENT_PACKET_PRESSURE_SEED

View File

@ -18,7 +18,7 @@
#endif
#ifndef MBED_CFG_UDP_CLIENT_PACKET_PRESSURE_BUFFER
#define MBED_CFG_UDP_CLIENT_PACKET_PRESSURE_BUFFER 8192
#define MBED_CFG_UDP_CLIENT_PACKET_PRESSURE_BUFFER 1024
#endif
#ifndef MBED_CFG_UDP_CLIENT_PACKET_PRESSURE_TIMEOUT