Experiment: always sleep for 10ms every time through the TX/RX loop.

pull/847/head
Mooneer Salem 2025-03-23 02:28:18 -07:00
parent 591ddeb5ce
commit 6019c9a522
1 changed files with 1 additions and 1 deletions

View File

@ -492,7 +492,7 @@ void* TxRxThread::Entry()
if (m_tx) txProcessing_();
else rxProcessing_();
std::this_thread::sleep_until(currentTime + 10ms);
std::this_thread::sleep_for(10ms);
}
// Force pipeline to delete itself when we're done with the thread.