1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-06-16 11:21:18 +03:00

Automatically call yield() in WiFiClient::available if called more than once

This commit is contained in:
Ivan Grokhotkov
2015-01-07 01:57:41 +03:00
parent 4942ceef37
commit 8e7a20c08d
3 changed files with 21 additions and 2 deletions

View File

@ -66,6 +66,8 @@ private:
void _err(int8_t err);
ClientContext* _client;
uint32_t _lastPollTime;
};
#endif