From 57b6fb213135c35cefe2a8de7fbc9be9e0a6b630 Mon Sep 17 00:00:00 2001 From: luc Date: Wed, 2 Sep 2015 15:10:32 +0800 Subject: [PATCH] Remove yield calls they are useless and may bring some conflict in loop --- esp8266/esp8266.ino | 2 -- 1 file changed, 2 deletions(-) diff --git a/esp8266/esp8266.ino b/esp8266/esp8266.ino index 746b0d54..83470e7f 100644 --- a/esp8266/esp8266.ino +++ b/esp8266/esp8266.ino @@ -135,7 +135,6 @@ uint8_t i,data; serverClients[i] = data_server->available(); continue; } - yield(); } //no free/disconnected spot so reject WiFiClient serverClient = data_server->available(); @@ -151,7 +150,6 @@ uint8_t i,data; Serial.write(data); COMMAND::read_buffer_tcp(data); } - yield(); } } }