We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2cad442 commit aaf34faCopy full SHA for aaf34fa
Marlin/src/gcode/feature/input_shaping/M593.cpp
@@ -30,13 +30,14 @@
30
void GcodeSuite::M593_report(const bool forReplay/*=true*/) {
31
report_heading_etc(forReplay, F("Input Shaping"));
32
#if HAS_SHAPING_X
33
- SERIAL_ECHO_MSG("M593 X"
+ SERIAL_ECHOLNPGM(" M593 X"
34
" F", stepper.get_shaping_frequency(X_AXIS),
35
" D", stepper.get_shaping_damping_ratio(X_AXIS)
36
);
37
#endif
38
#if HAS_SHAPING_Y
39
- SERIAL_ECHO_MSG("M593 Y"
+ TERN_(HAS_SHAPING_X, report_echo_start(forReplay));
40
+ SERIAL_ECHOLNPGM(" M593 Y"
41
" F", stepper.get_shaping_frequency(Y_AXIS),
42
" D", stepper.get_shaping_damping_ratio(Y_AXIS)
43
0 commit comments