Browse Source

Fix M503 skew output

Followup to 19e75ccf86
Scott Lahteine 7 years ago
parent
commit
2b5a9be49c
No account linked to committer's email address
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/src/module/configuration_store.cpp

+ 1
- 1
Marlin/src/module/configuration_store.cpp View File

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

Loading…
Cancel
Save