Macro px4::info_raw

source ·
macro_rules! info_raw {
    ($arg:expr) => { ... };
    ($($arg:tt)+) => { ... };
}
Expand description

Print output without any decoration.

The equivalent of PX4_INFO_RAW in C and C++.

Example

info_raw!("Hello World!\n");
info_raw!("Hello {}!\n", "World");