diff --git a/down-the-stack/apps/src/bin/uarte_print.rs b/down-the-stack/apps/src/bin/uarte_print.rs index cf1e6d5..5e434d8 100644 --- a/down-the-stack/apps/src/bin/uarte_print.rs +++ b/down-the-stack/apps/src/bin/uarte_print.rs @@ -14,14 +14,9 @@ fn main() -> ! { // to `defmt-trace` by changing the `default = []` entry in `[features]` let board = dk_bsc::init().unwrap(); - let mut uarte = board.uarte; - - - - - let tx_buffer = "Hello\n"; + let tx_buffer = "Hello, World!\n"; uarte.write_str(tx_buffer).unwrap(); // this program does not `exit`; use Ctrl+C to terminate it