MMU: Disable FINDA runout during Homing and MBL

If for some reason a user added a extrusion move in the firmware. Prevent FINDA runout
from triggering.

Change in memory:
Flash: +16 bytes
SRAM: 0 bytes
This commit is contained in:
Guðni Már Gilbert 2023-08-16 16:36:14 +00:00 committed by DRracer
parent 61ec6b8ae7
commit c4f48a6606
1 changed files with 2 additions and 0 deletions

View File

@ -528,6 +528,8 @@ bool check_fsensor() {
return printJobOngoing()
&& mcode_in_progress != 600
&& !saved_printing
&& !mesh_bed_leveling_flag
&& !homing_flag
&& e_active();
}