0
0
Fork 0
mirror of https://github.com/MarlinFirmware/Marlin.git synced 2025-01-19 16:16:13 +00:00

Fix malformed Capabilities report

This commit is contained in:
Anthony 2017-12-28 20:03:44 -06:00 committed by GitHub
parent f9b7659b56
commit 7637eb863a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -8445,6 +8445,7 @@ inline void gcode_M114() {
static void cap_line(const char * const name, bool ena=false) { static void cap_line(const char * const name, bool ena=false) {
SERIAL_PROTOCOLPGM("Cap:"); SERIAL_PROTOCOLPGM("Cap:");
serialprintPGM(name); serialprintPGM(name);
SERIAL_PROTOCOLPGM(":");
SERIAL_PROTOCOLLN(int(ena ? 1 : 0)); SERIAL_PROTOCOLLN(int(ena ? 1 : 0));
} }
#endif #endif