Skip to content

Commit

Permalink
fix: increase mutex lock delay to 1ms
Browse files Browse the repository at this point in the history
  • Loading branch information
vtx22 committed Mar 7, 2025
1 parent 3f8275c commit 03b19ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/DataHandler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ void DataHandler::receiver_loop()
lock.unlock();
}

std::this_thread::sleep_for(500us);
std::this_thread::sleep_for(1ms);
}
}

Expand Down

0 comments on commit 03b19ab

Please sign in to comment.