Final tweaks to M111 output

This commit is contained in:
Scott Lahteine 2016-04-04 15:36:07 -07:00
parent d5ccc9c70a
commit 56e8e2b0eb
2 changed files with 2 additions and 2 deletions

View File

@ -4379,7 +4379,7 @@ inline void gcode_M111() {
uint8_t comma = 0;
for (uint8_t i = 0; i < COUNT(debug_strings); i++) {
if (TEST(marlin_debug_flags, i)) {
if (comma++) SERIAL_CHAR('|');
if (comma++) SERIAL_CHAR(',');
serialprintPGM((char*)pgm_read_word(&(debug_strings[i])));
}
}