Allow SERIAL_ECHOPAIR to take up to 12 pairs (#13311)
This commit is contained in:
parent
4771e372a1
commit
cfdb38eda4
30 changed files with 474 additions and 611 deletions
|
@ -45,8 +45,7 @@
|
|||
for (uint8_t y = 0; y < GRID_MAX_POINTS_Y; y++)
|
||||
if (!isnan(z_values[x][y])) {
|
||||
SERIAL_ECHO_START();
|
||||
SERIAL_ECHOPAIR(" M421 I", x);
|
||||
SERIAL_ECHOPAIR(" J", y);
|
||||
SERIAL_ECHOPAIR(" M421 I", x, " J", y);
|
||||
SERIAL_ECHOPAIR_F(" Z", z_values[x][y], 2);
|
||||
SERIAL_EOL();
|
||||
serial_delay(75); // Prevent Printrun from exploding
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue