Missed hprintln with multiline

This commit is contained in:
Henrik Tjäder 2023-01-11 21:48:21 +01:00
parent c370c0b21f
commit 050313d62d
4 changed files with 6 additions and 12 deletions

View file

@ -49,7 +49,6 @@ mod app {
"foo called {} time{}",
*cx.local.times,
if *cx.local.times > 1 { "s" } else { "" }
)
.unwrap();
);
}
}

View file

@ -88,7 +88,6 @@ mod app {
"foo has been called {} time{}",
n,
if n == 1 { "" } else { "s" }
)
.ok();
);
}
}

View file

@ -82,8 +82,7 @@ mod app {
"t0 p2 called {} time{}",
*cx.local.times,
if *cx.local.times > 1 { "s" } else { "" }
)
.ok();
);
hprintln!("t0 p2 exit");
}
@ -96,8 +95,7 @@ mod app {
"t1 p3 called {} time{}",
*cx.local.times,
if *cx.local.times > 1 { "s" } else { "" }
)
.ok();
);
cx.shared.s4.lock(|s| {
hprintln!("t1 enter lock s4 {}", s);
@ -120,8 +118,7 @@ mod app {
"t2 p4 called {} time{}",
*cx.local.times,
if *cx.local.times > 1 { "s" } else { "" }
)
.unwrap();
);
cx.shared.s4.lock(|s| {
hprintln!("enter lock s4 {}", s);

View file

@ -53,7 +53,6 @@ mod app {
"UART0 called {} time{}",
*cx.local.times,
if *cx.local.times > 1 { "s" } else { "" }
)
.unwrap();
);
}
}