Dbg: Useful printfs for the raspi5

This commit is contained in:
2025-11-10 01:05:20 -04:00
parent 401c844fcc
commit 5bb9c9e90b
3 changed files with 20 additions and 3 deletions
@@ -88,7 +88,10 @@ void StimulusBuffer::onTimeout(const boost::system::error_code& error)
if (frameAssemblyRateLimiter.tryAcquire())
{ nextWakeupDelayMs = CONFIG_STIMBUFF_FRAME_PERIOD_MS; }
else
{ nextWakeupDelayMs = CONFIG_STIMBUFF_FRAME_RETRY_DELAY_MS; }
{
std::cout << __func__ << ": Deferring frame production due to rate limit." << std::endl;
nextWakeupDelayMs = CONFIG_STIMBUFF_FRAME_RETRY_DELAY_MS;
}
// Call the derived class's frame production handler
stimFrameProductionTimesliceInd();