correct message

This commit is contained in:
Mirabellensaft 2023-03-07 17:53:42 +01:00
parent 71ad8b0b5a
commit 59a08c6854

View file

@ -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