Use SERIAL_EOL(); instead of passing new line string

This commit is contained in:
Roxy-3D
2018-01-04 16:16:28 -06:00
committed by GitHub
parent 39289a6952
commit 80cc860810

View File

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