add precision to planner.xy_skew_factor so it doesn't print as 0.00
This commit is contained in:
parent
1761cacaa1
commit
39289a6952
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user