From c59d0caba2f5c62bc80e645c58b999c8ff5f8aee Mon Sep 17 00:00:00 2001 From: Laura Hausmann Date: Thu, 9 Feb 2023 00:34:26 +0100 Subject: [PATCH] Remove debug stuff in WiFiClientFixed --- AfRApay.MateCard/src/wifiFix.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/AfRApay.MateCard/src/wifiFix.cpp b/AfRApay.MateCard/src/wifiFix.cpp index ced4966..f82d5a3 100644 --- a/AfRApay.MateCard/src/wifiFix.cpp +++ b/AfRApay.MateCard/src/wifiFix.cpp @@ -16,8 +16,6 @@ void WiFiClientFixed::flush() { } while (a) { // override broken WiFiClient flush method, ref https://github.com/espressif/arduino-esp32/issues/6129#issuecomment-1237417915 - //res = recv(fd(), buf, toRead, MSG_DONTWAIT); - Serial.println(a); res = read(buf, min(a, (size_t)WIFI_CLIENT_FLUSH_BUFFER_SIZE)); if (res < 0) { log_e("fail on fd %d, errno: %d, \"%s\"", fd(), errno, strerror(errno));