🩹 Fix M593 report
This commit is contained in:
parent
44636f3b74
commit
4ce2f1e5ba
@ -30,13 +30,14 @@
|
|||||||
void GcodeSuite::M593_report(const bool forReplay/*=true*/) {
|
void GcodeSuite::M593_report(const bool forReplay/*=true*/) {
|
||||||
report_heading_etc(forReplay, F("Input Shaping"));
|
report_heading_etc(forReplay, F("Input Shaping"));
|
||||||
#if HAS_SHAPING_X
|
#if HAS_SHAPING_X
|
||||||
SERIAL_ECHO_MSG("M593 X"
|
SERIAL_ECHOLNPGM(" M593 X"
|
||||||
" F", stepper.get_shaping_frequency(X_AXIS),
|
" F", stepper.get_shaping_frequency(X_AXIS),
|
||||||
" D", stepper.get_shaping_damping_ratio(X_AXIS)
|
" D", stepper.get_shaping_damping_ratio(X_AXIS)
|
||||||
);
|
);
|
||||||
#endif
|
#endif
|
||||||
#if HAS_SHAPING_Y
|
#if HAS_SHAPING_Y
|
||||||
SERIAL_ECHO_MSG("M593 Y"
|
TERN_(HAS_SHAPING_X, report_echo_start(forReplay));
|
||||||
|
SERIAL_ECHOLNPGM(" M593 Y"
|
||||||
" F", stepper.get_shaping_frequency(Y_AXIS),
|
" F", stepper.get_shaping_frequency(Y_AXIS),
|
||||||
" D", stepper.get_shaping_damping_ratio(Y_AXIS)
|
" D", stepper.get_shaping_damping_ratio(Y_AXIS)
|
||||||
);
|
);
|
||||||
|
Loading…
Reference in New Issue
Block a user