From 59a08c6854610185617d1eadd58aec1139a7f1e7 Mon Sep 17 00:00:00 2001 From: Mirabellensaft Date: Tue, 7 Mar 2023 17:53:42 +0100 Subject: [PATCH] correct message --- down-the-stack/apps/src/bin/uarte_print.rs | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) 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