Browse Source

Fix M503 skew output

Followup to 19e75ccf86
pull/1/head
Scott Lahteine 7 years ago
committed by GitHub
parent
commit
2b5a9be49c
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      Marlin/src/module/configuration_store.cpp

2
Marlin/src/module/configuration_store.cpp

@ -2187,7 +2187,7 @@ void MarlinSettings::reset() {
SERIAL_ECHOLNPAIR(" K", LINEAR_UNIT(planner.yz_skew_factor));
#else
SERIAL_ECHO(" M852 S");
SERIAL_ECHO_F(planner.xy_skew_factor, 6);
SERIAL_ECHO_F(LINEAR_UNIT(planner.xy_skew_factor), 6);
SERIAL_EOL();
#endif
#endif

Loading…
Cancel
Save