From 5705a3d026ef3177947ac89e53f7a9329d9583eb Mon Sep 17 00:00:00 2001 From: Pol Henarejos Date: Thu, 16 Apr 2026 19:50:08 +0200 Subject: [PATCH] Remove iperf references. Signed-off-by: Pol Henarejos --- src/usb/lwip/lwip.c | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/usb/lwip/lwip.c b/src/usb/lwip/lwip.c index 1338541..924e2ea 100644 --- a/src/usb/lwip/lwip.c +++ b/src/usb/lwip/lwip.c @@ -53,10 +53,6 @@ try changing the first byte of tud_network_mac_address[] below from 0x02 to 0x00 #include "lwip/timeouts.h" #include "rest_server.h" -#ifdef INCLUDE_IPERF - #include "lwip/apps/lwiperf.h" -#endif - #define INIT_IP4(a, b, c, d) \ { PP_HTONL(LWIP_MAKEU32(a, b, c, d)) } @@ -223,10 +219,5 @@ int lwip_itf_init(void) { while (dnserv_init(IP_ADDR_ANY, 53, dns_query_proc) != ERR_OK); while (rest_server_init() != ERR_OK); -#ifdef INCLUDE_IPERF - // test with: iperf -c 192.168.7.1 -e -i 1 -M 5000 -l 8192 -r - lwiperf_start_tcp_server_default(NULL, NULL); -#endif - return 0; }