Fix Capabilities Report

This commit is contained in:
Scott Lahteine 2017-12-28 21:08:59 -06:00
parent 8274369522
commit 427df8792d

View file

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