Browse Source

Fix Capabilities Report

Scott Lahteine 6 years ago
parent
commit
427df8792d
1 changed files with 1 additions and 0 deletions
  1. 1
    0
      Marlin/src/gcode/host/M115.cpp

+ 1
- 0
Marlin/src/gcode/host/M115.cpp View File

27
   static void cap_line(const char * const name, bool ena=false) {
27
   static void cap_line(const char * const name, bool ena=false) {
28
     SERIAL_PROTOCOLPGM("Cap:");
28
     SERIAL_PROTOCOLPGM("Cap:");
29
     serialprintPGM(name);
29
     serialprintPGM(name);
30
+    SERIAL_CHAR(':');
30
     SERIAL_PROTOCOLLN(int(ena ? 1 : 0));
31
     SERIAL_PROTOCOLLN(int(ena ? 1 : 0));
31
   }
32
   }
32
 #endif
33
 #endif

Loading…
Cancel
Save