Revert 10ms max wait.

pull/840/head
Mooneer Salem 2025-03-03 03:46:45 -08:00 committed by GitHub
parent 02ee6e149c
commit 0227ce5f0c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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_until(currentTime + 20ms);
}
// Force pipeline to delete itself when we're done with the thread.