add precision to planner.xy_skew_factor so it doesn't print as 0.00

This commit is contained in:
Roxy-3D 2018-01-04 16:11:05 -06:00 committed by GitHub
parent 1761cacaa1
commit 39289a6952
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10078,7 +10078,9 @@ inline void gcode_M502() {
if (!ijk) {
SERIAL_ECHO_START();
SERIAL_ECHOPAIR(MSG_SKEW_FACTOR " XY: ", planner.xy_skew_factor);
SERIAL_ECHO(MSG_SKEW_FACTOR " XY: ");
SERIAL_ECHO_F(planner.xy_skew_factor, 6);
SERIAL_ECHO("\n");
#if ENABLED(SKEW_CORRECTION_FOR_Z)
SERIAL_ECHOPAIR(" XZ: ", planner.xz_skew_factor);
SERIAL_ECHOLNPAIR(" YZ: ", planner.yz_skew_factor);