|
@@ -54,10 +54,15 @@ void GcodeSuite::M412() {
|
54
|
54
|
else {
|
55
|
55
|
SERIAL_ECHO_START();
|
56
|
56
|
SERIAL_ECHOPGM("Filament runout ");
|
57
|
|
- serialprintln_onoff(runout.enabled);
|
|
57
|
+ serialprint_onoff(runout.enabled);
|
58
|
58
|
#if HAS_FILAMENT_RUNOUT_DISTANCE
|
59
|
|
- SERIAL_ECHOLNPAIR("Filament runout distance (mm): ", runout.runout_distance());
|
|
59
|
+ SERIAL_ECHOPAIR(" ; Distance ", runout.runout_distance(), "mm");
|
60
|
60
|
#endif
|
|
61
|
+ #if ENABLED(HOST_ACTION_COMMANDS)
|
|
62
|
+ SERIAL_ECHOPGM(" ; Host handling ");
|
|
63
|
+ serialprint_onoff(runout.host_handling);
|
|
64
|
+ #endif
|
|
65
|
+ SERIAL_EOL();
|
61
|
66
|
}
|
62
|
67
|
}
|
63
|
68
|
|