Merge pull request #6394 from s-hadinger/fix_6391

TasmotaSerial 2.4.0 compilation issue on Core 2.3.0
This commit is contained in:
Theo Arends 2019-09-10 10:39:49 +02:00 committed by GitHub
commit 2a9b42a2a2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -218,6 +218,7 @@ int TasmotaSerial::available()
#else
#define TM_SERIAL_WAIT_SND { while (ESP.getCycleCount() < (wait + start)); wait += m_bit_time; }
#define TM_SERIAL_WAIT_RCV { while (ESP.getCycleCount() < (wait + start)); wait += m_bit_time; }
#define TM_SERIAL_WAIT_RCV_LOOP { while (ESP.getCycleCount() < (wait + start)); }
#endif
size_t TasmotaSerial::write(uint8_t b)