8 void vprintf(
const char *fmt, va_list args) {
10 vsnprintf(buf, 192, fmt, args);
11 SERIAL_PORT_MONITOR.print(buf);
15 void print(
const char* fmt, ...) {
26 void println(
const char *fmt, ... ) {
31 SERIAL_PORT_MONITOR.println();
35 inline void println() {
36 SERIAL_PORT_MONITOR.println();
Macros and definitions that provide a consistency layer among the various Arduino boards for compatib...