lwip - Reduced size of buffers in echo-parallel tests

These tests could adopt the dynamically sized buffers used for the
packet-pressure tests, however throughput is not an important feature
of these tests.
pull/3265/head
Christopher Haster 2016-11-17 10:19:19 -06:00
parent 4551dfa667
commit 2da71a7f87
2 changed files with 2 additions and 4 deletions

View File

@ -10,7 +10,7 @@
#ifndef MBED_CFG_TCP_CLIENT_ECHO_BUFFER_SIZE
#define MBED_CFG_TCP_CLIENT_ECHO_BUFFER_SIZE 256
#define MBED_CFG_TCP_CLIENT_ECHO_BUFFER_SIZE 64
#endif
#ifndef MBED_CFG_TCP_CLIENT_ECHO_THREADS
@ -18,7 +18,6 @@
#endif
const char ASCII_MAX = '~' - ' ';
EthernetInterface net;
SocketAddress tcp_addr;
Mutex iomutex;

View File

@ -9,7 +9,7 @@
#include "unity/unity.h"
#ifndef MBED_CFG_UDP_CLIENT_ECHO_BUFFER_SIZE
#define MBED_CFG_UDP_CLIENT_ECHO_BUFFER_SIZE 256
#define MBED_CFG_UDP_CLIENT_ECHO_BUFFER_SIZE 64
#endif
#ifndef MBED_CFG_UDP_CLIENT_ECHO_TIMEOUT
@ -21,7 +21,6 @@
#endif
const char ASCII_MAX = '~' - ' ';
const int ECHO_LOOPS = 16;
EthernetInterface net;
SocketAddress udp_addr;