macro_rules! rtt_init_print {
    ($mode:path, $size:expr) => { ... };
    ($mode:path) => { ... };
    () => { ... };
}
Expand description

Initializes RTT with a single up channel and sets it as the print channel for the printing macros.

The optional arguments specify the blocking mode (default: NoBlockSkip) and size of the buffer in bytes (default: 1024). See rtt_init for more details.