diff --git a/src/VS1/VS1.cpp b/src/VS1/VS1.cpp index 7a4a491..001d31e 100644 --- a/src/VS1/VS1.cpp +++ b/src/VS1/VS1.cpp @@ -236,7 +236,7 @@ void VS1::_syncEnq() { // if we want to send something within 50msec of previous SEND, send again // if > 50msec, return to INIT void VS1::_syncRecv() { - if (_currentMillis - _lastMillis < 50) { + if (_currentMillis - _lastMillis < 100) { if (_currentDatapoint) { _setState(State::SEND); }