Browse Source

Merge pull request #3384 from thinkyhead/rc_adjust_M111_output

Final tweaks to M111 output
Scott Lahteine 8 years ago
parent
commit
d5b19a49f6
2 changed files with 2 additions and 2 deletions
  1. 1
    1
      Marlin/Marlin_main.cpp
  2. 1
    1
      Marlin/language.h

+ 1
- 1
Marlin/Marlin_main.cpp View File

4379
     uint8_t comma = 0;
4379
     uint8_t comma = 0;
4380
     for (uint8_t i = 0; i < COUNT(debug_strings); i++) {
4380
     for (uint8_t i = 0; i < COUNT(debug_strings); i++) {
4381
       if (TEST(marlin_debug_flags, i)) {
4381
       if (TEST(marlin_debug_flags, i)) {
4382
-        if (comma++) SERIAL_CHAR('|');
4382
+        if (comma++) SERIAL_CHAR(',');
4383
         serialprintPGM((char*)pgm_read_word(&(debug_strings[i])));
4383
         serialprintPGM((char*)pgm_read_word(&(debug_strings[i])));
4384
       }
4384
       }
4385
     }
4385
     }

+ 1
- 1
Marlin/language.h View File

231
 #define MSG_T_MINTEMP                       "MINTEMP triggered"
231
 #define MSG_T_MINTEMP                       "MINTEMP triggered"
232
 
232
 
233
 // Debug
233
 // Debug
234
-#define MSG_DEBUG_PREFIX                    "DEBUG: "
234
+#define MSG_DEBUG_PREFIX                    "DEBUG:"
235
 #define MSG_DEBUG_OFF                       "off"
235
 #define MSG_DEBUG_OFF                       "off"
236
 #define MSG_DEBUG_ECHO                      "ECHO"
236
 #define MSG_DEBUG_ECHO                      "ECHO"
237
 #define MSG_DEBUG_INFO                      "INFO"
237
 #define MSG_DEBUG_INFO                      "INFO"

Loading…
Cancel
Save