Browse Source

Add 'M114 E' to get E position (M114_DETAIL) (#16026)

pull/1/head
BigTreeTech 5 years ago
committed by Scott Lahteine
parent
commit
441ee3e53f
  1. 4
      Marlin/src/gcode/host/M114.cpp

4
Marlin/src/gcode/host/M114.cpp

@ -188,6 +188,10 @@ void GcodeSuite::M114() {
report_current_position_detail();
return;
}
if (parser.seen('E')) {
SERIAL_ECHOLNPAIR("Count E:", stepper.position(E_AXIS));
return;
}
#endif
planner.synchronize();

Loading…
Cancel
Save