Browse Source

🐛 Fix M203 report

Scott Lahteine 2 years ago
parent
commit
384ff264d7
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/src/gcode/config/M200-M205.cpp

+ 1
- 1
Marlin/src/gcode/config/M200-M205.cpp View File

@@ -209,7 +209,7 @@ void GcodeSuite::M203_report(const bool forReplay/*=true*/) {
209 209
   );
210 210
   #if ENABLED(DISTINCT_E_FACTORS)
211 211
     LOOP_L_N(i, E_STEPPERS) {
212
-      SERIAL_ECHO_START();
212
+      if (!forReplay) SERIAL_ECHO_START();
213 213
       SERIAL_ECHOLNPGM_P(
214 214
           PSTR("  M203 T"), i
215 215
         , SP_E_STR, VOLUMETRIC_UNIT(planner.settings.max_feedrate_mm_s[E_AXIS_N(i)])

Loading…
Cancel
Save