Skip to content

Commit

Permalink
bit more time
Browse files Browse the repository at this point in the history
  • Loading branch information
bertmelis authored Oct 2, 2024
1 parent 579d922 commit 7733080
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/VS1/VS1.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down

0 comments on commit 7733080

Please sign in to comment.