Skip to content

Commit

Permalink
Increase filament rounout trigger delay
Browse files Browse the repository at this point in the history
In some cases, the filament runout was triggered erratically, we are now waiting for the trigger to last a few moments until we start the routine.
  • Loading branch information
davidramiro committed Feb 22, 2019
1 parent b447245 commit 30bbf59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Marlin/AnycubicTFT.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -606,7 +606,7 @@ void AnycubicTFTClass::FilamentRunout()
if(FilamentTestStatus>FilamentTestLastStatus)
{
FilamentRunoutCounter++;
if(FilamentRunoutCounter>=15800)
if(FilamentRunoutCounter>=31600)
{
FilamentRunoutCounter=0;
#ifdef SDSUPPORT
Expand Down

0 comments on commit 30bbf59

Please sign in to comment.