We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e5cddb commit 10b5a75Copy full SHA for 10b5a75
src/main.rs
@@ -275,7 +275,7 @@ fn main() -> ! {
275
276
let time = timer.get_counter();
277
let mut text: String<64> = String::new();
278
- writeln!(&mut text, "Current timer ticks: {}", time).unwrap();
+ write!(&mut text, "Current timer ticks: {}\r\n", time).unwrap();
279
280
// This only works reliably because the number of bytes written to
281
// the serial port is smaller than the buffers available to the USB
0 commit comments