Przeglądaj źródła

Final tweaks to M111 output

Scott Lahteine 9 lat temu
rodzic
commit
56e8e2b0eb
2 zmienionych plików z 2 dodań i 2 usunięć
  1. 1
    1
      Marlin/Marlin_main.cpp
  2. 1
    1
      Marlin/language.h

+ 1
- 1
Marlin/Marlin_main.cpp Wyświetl plik

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 Wyświetl plik

225
 #define MSG_T_MINTEMP                       "MINTEMP triggered"
225
 #define MSG_T_MINTEMP                       "MINTEMP triggered"
226
 
226
 
227
 // Debug
227
 // Debug
228
-#define MSG_DEBUG_PREFIX                    "DEBUG: "
228
+#define MSG_DEBUG_PREFIX                    "DEBUG:"
229
 #define MSG_DEBUG_OFF                       "off"
229
 #define MSG_DEBUG_OFF                       "off"
230
 #define MSG_DEBUG_ECHO                      "ECHO"
230
 #define MSG_DEBUG_ECHO                      "ECHO"
231
 #define MSG_DEBUG_INFO                      "INFO"
231
 #define MSG_DEBUG_INFO                      "INFO"

Ładowanie…
Anuluj
Zapisz