We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4be8555 commit 02572f6Copy full SHA for 02572f6
Marlin/src/gcode/feature/runout/M412.cpp
@@ -54,10 +54,15 @@ void GcodeSuite::M412() {
54
else {
55
SERIAL_ECHO_START();
56
SERIAL_ECHOPGM("Filament runout ");
57
- serialprintln_onoff(runout.enabled);
+ serialprint_onoff(runout.enabled);
58
#if HAS_FILAMENT_RUNOUT_DISTANCE
59
- SERIAL_ECHOLNPAIR("Filament runout distance (mm): ", runout.runout_distance());
+ SERIAL_ECHOPAIR(" ; Distance ", runout.runout_distance(), "mm");
60
#endif
61
+ #if ENABLED(HOST_ACTION_COMMANDS)
62
+ SERIAL_ECHOPGM(" ; Host handling ");
63
+ serialprint_onoff(runout.host_handling);
64
+ #endif
65
+ SERIAL_EOL();
66
}
67
68
0 commit comments