marcel_os

Macro serial_println

Source
macro_rules! serial_println {
    () => { ... };
    ($fmt:expr) => { ... };
    ($fmt:expr, $($arg:tt)*) => { ... };
}
Expand description

A macro for printing to the serial port with a newline.

This macro is similar to serial_print!, but appends a newline to the printed string.