Skip to content
Snippets Groups Projects
Commit 388babbc authored by Scott Lahteine's avatar Scott Lahteine
Browse files

Tweak SERIAL_PRINTF

parent d94e0779
Branches
Tags
No related merge requests found
......@@ -67,7 +67,7 @@ extern uint8_t marlin_debug_flags;
#define SERIAL_ECHOLN(x) SERIAL_OUT(println, x)
#define SERIAL_PRINT(x,b) SERIAL_OUT(print, x, b)
#define SERIAL_PRINTLN(x,b) SERIAL_OUT(println, x, b)
#define SERIAL_PRINTF(args...) SERIAL_OUT(printf, args)
#define SERIAL_PRINTF(...) SERIAL_OUT(printf, __VA_ARGS__)
#define SERIAL_FLUSH() SERIAL_OUT(flush)
#if TX_BUFFER_SIZE > 0
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment