Browse Source

Align slightly in M114 detail

vanilla_fb_2.0.x
Scott Lahteine 5 years ago
parent
commit
aecfc05748
  1. 3
      Marlin/src/gcode/host/M114.cpp

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

@ -38,11 +38,12 @@
char str[12]; char str[12];
LOOP_L_N(a, n) { LOOP_L_N(a, n) {
SERIAL_CHAR(' ', axis_codes[a], ':'); SERIAL_CHAR(' ', axis_codes[a], ':');
if (pos[a] >= 0) SERIAL_CHAR(' ');
SERIAL_ECHO(dtostrf(pos[a], 1, precision, str)); SERIAL_ECHO(dtostrf(pos[a], 1, precision, str));
} }
SERIAL_EOL(); SERIAL_EOL();
} }
inline void report_xyz(const xyze_pos_t &pos) { report_xyze(pos, 3); } inline void report_xyz(const xyze_pos_t &pos) { report_xyze(pos, XYZ); }
void report_xyz(const xyz_pos_t &pos, const uint8_t precision=3) { void report_xyz(const xyz_pos_t &pos, const uint8_t precision=3) {
char str[12]; char str[12];

Loading…
Cancel
Save