|
@@ -84,6 +84,11 @@ FORCE_INLINE void serial_echopair_P(const char* s_P, uint16_t v) { serial_echopa
|
84
|
84
|
FORCE_INLINE void serial_echopair_P(const char* s_P, bool v) { serial_echopair_P(s_P, (int)v); }
|
85
|
85
|
FORCE_INLINE void serial_echopair_P(const char* s_P, void *v) { serial_echopair_P(s_P, (unsigned long)v); }
|
86
|
86
|
|
|
87
|
+void serial_spaces(uint8_t count);
|
|
88
|
+#define SERIAL_ECHO_SP(C) serial_spaces(C)
|
|
89
|
+#define SERIAL_ERROR_SP(C) serial_spaces(C)
|
|
90
|
+#define SERIAL_PROTOCOL_SP(C) serial_spaces(C)
|
|
91
|
+
|
87
|
92
|
//
|
88
|
93
|
// Functions for serial printing from PROGMEM. (Saves loads of SRAM.)
|
89
|
94
|
//
|