Fix spacing in JSON output

This commit is contained in:
Scott Lahteine 2017-05-29 15:44:20 -05:00
parent b2d3c8aedd
commit 2d71569138

View file

@ -2467,7 +2467,7 @@ static void clean_up_after_endstop_or_probe_move() {
#endif
for (uint8_t y = 0; y < sy; y++) {
#ifdef SCAD_MESH_OUTPUT
SERIAL_PROTOCOLLNPGM(" ["); // open sub-array
SERIAL_PROTOCOLPGM(" ["); // open sub-array
#else
if (y < 10) SERIAL_PROTOCOLCHAR(' ');
SERIAL_PROTOCOL((int)y);
@ -2501,7 +2501,7 @@ static void clean_up_after_endstop_or_probe_move() {
SERIAL_EOL;
}
#ifdef SCAD_MESH_OUTPUT
SERIAL_PROTOCOLPGM("\n];"); // close 2D array
SERIAL_PROTOCOLPGM("];"); // close 2D array
#endif
SERIAL_EOL;
}