Fix a serial echo

This commit is contained in:
Scott Lahteine 2018-09-16 22:03:55 -05:00
parent a16405d608
commit c2ffb49c04
1 changed files with 1 additions and 1 deletions

View File

@ -11322,7 +11322,7 @@ inline void gcode_M502() {
SERIAL_ECHOPGM("led_line[");
if (r < 10) SERIAL_CHAR(' ');
SERIAL_ECHO(int(r));
SERIAL_ECHO("]=");
SERIAL_ECHOPGM("]=");
for (uint8_t b = 8; b--;) SERIAL_CHAR('0' + TEST(max7219.led_line[r], b));
SERIAL_EOL();
}