Skip to content

Commit

Permalink
stdio/rtt: Don't silently drop println statements
Browse files Browse the repository at this point in the history
This still silently truncates prints, but during printf debugging, those
are still understood more easily than skipped lines.
  • Loading branch information
chrysn committed Apr 30, 2024
1 parent 37a31dc commit 80bf8f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/riot-rs-debug/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ mod backend {
pub use rtt_target::rprint as print;
pub use rtt_target::rprintln as println;
pub fn init() {
rtt_target::rtt_init_print!();
rtt_target::rtt_init_print!(NoBlockTrim);
}
}

Expand Down

0 comments on commit 80bf8f8

Please sign in to comment.