From 2b5a9be49c4a7fe36a25842e341fc5ad1d81e52e Mon Sep 17 00:00:00 2001 From: Scott Lahteine Date: Sat, 6 Jan 2018 20:55:57 -0600 Subject: [PATCH] Fix M503 skew output Followup to 19e75ccf8618b3691f14f6d51b1e73f56fb1355e --- Marlin/src/module/configuration_store.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Marlin/src/module/configuration_store.cpp b/Marlin/src/module/configuration_store.cpp index 48dd33649..9926b4d97 100644 --- a/Marlin/src/module/configuration_store.cpp +++ b/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