Skip to content

Commit

Permalink
Adjusted delay timers.
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinMueller2003 committed Dec 31, 2024
1 parent c2be0f9 commit 430bf6b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/service/FPPDiscovery.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -839,6 +839,8 @@ void c_FPPDiscovery::ProcessFile (
memset(OutputMgr.GetBufferAddress(), 0x00, OutputMgr.GetBufferSize());
InputMgr.SetOperationalState(true);
OutputMgr.PauseOutputs(false);
delay(10);
StartPlaying(UploadFileName, 0.0);
}

} while (false);
Expand Down Expand Up @@ -1173,6 +1175,7 @@ void c_FPPDiscovery::StartPlaying (String & FileName, float SecondsElapsed)

if (InputFPPRemotePlayFile)
{
// DEBUG_V ("Ask FSM to start playing");
InputFPPRemotePlayFile->Start (FileName, SecondsElapsed, 1);
}

Expand Down Expand Up @@ -1210,7 +1213,7 @@ void c_FPPDiscovery::StopPlaying (bool wait)
if(wait)
{
FeedWDT();
delay(25);
delay(5);
}
else
{
Expand Down

0 comments on commit 430bf6b

Please sign in to comment.