|
@@ -146,8 +146,8 @@ extern uint8_t marlin_debug_flags;
|
146
|
146
|
#define SERIAL_ECHOPGM(S) (serialprintPGM(PSTR(S)))
|
147
|
147
|
#define SERIAL_ECHOLNPGM(S) (serialprintPGM(PSTR(S "\n")))
|
148
|
148
|
|
149
|
|
-#define SERIAL_ECHOPAIR_F(pre, V...) do{ SERIAL_ECHO(pre); SERIAL_ECHO_F(V); }while(0)
|
150
|
|
-#define SERIAL_ECHOLNPAIR_F(V...) do{ SERIAL_ECHOPAIR_F(V); SERIAL_EOL(); }while(0)
|
|
149
|
+#define SERIAL_ECHOPAIR_F(S, V...) do{ SERIAL_ECHOPGM(S); SERIAL_ECHO_F(V); }while(0)
|
|
150
|
+#define SERIAL_ECHOLNPAIR_F(V...) do{ SERIAL_ECHOPAIR_F(V); SERIAL_EOL(); }while(0)
|
151
|
151
|
|
152
|
152
|
#define SERIAL_ECHO_START() serial_echo_start()
|
153
|
153
|
#define SERIAL_ERROR_START() serial_error_start()
|