|
|
|
|
73
|
|
73
|
|
74
|
#define SERIAL_CHAR(x) SERIAL_OUT(write, x)
|
74
|
#define SERIAL_CHAR(x) SERIAL_OUT(write, x)
|
75
|
#define SERIAL_ECHO(x) SERIAL_OUT(print, x)
|
75
|
#define SERIAL_ECHO(x) SERIAL_OUT(print, x)
|
76
|
-#define SERIAL_ECHO_F(V...) SERIAL_OUT(print, V)
|
|
|
|
|
76
|
+#define SERIAL_ECHO_F(V...) SERIAL_OUT(print, V)
|
77
|
#define SERIAL_ECHOLN(x) SERIAL_OUT(println, x)
|
77
|
#define SERIAL_ECHOLN(x) SERIAL_OUT(println, x)
|
78
|
#define SERIAL_PRINT(x,b) SERIAL_OUT(print, x, b)
|
78
|
#define SERIAL_PRINT(x,b) SERIAL_OUT(print, x, b)
|
79
|
#define SERIAL_PRINTLN(x,b) SERIAL_OUT(println, x, b)
|
79
|
#define SERIAL_PRINTLN(x,b) SERIAL_OUT(println, x, b)
|
80
|
-#define SERIAL_PRINTF(V...) SERIAL_OUT(printf, V)
|
|
|
|
|
80
|
+#define SERIAL_PRINTF(V...) SERIAL_OUT(printf, V)
|
81
|
#define SERIAL_FLUSH() SERIAL_OUT(flush)
|
81
|
#define SERIAL_FLUSH() SERIAL_OUT(flush)
|
82
|
|
82
|
|
83
|
#if TX_BUFFER_SIZE > 0
|
83
|
#if TX_BUFFER_SIZE > 0
|