mirror of https://github.com/arendst/Tasmota.git
Update TasmotaSerial.cpp
This commit is contained in:
parent
838e571d10
commit
3e7e882ee5
|
@ -218,6 +218,7 @@ int TasmotaSerial::available()
|
|||
#define TM_SERIAL_WAIT_RCV_LOOP { while (ESP.getCycleCount() < (wait + start)); }
|
||||
#else
|
||||
#define TM_SERIAL_WAIT_SND { while (ESP.getCycleCount() < (wait + start)); wait += m_bit_time; }
|
||||
#define TM_SERIAL_WAIT_SND_FAST { 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
|
||||
|
|
Loading…
Reference in New Issue