From aa907e9f2073bf29f02cec9dfb474355ba7a5164 Mon Sep 17 00:00:00 2001 From: Mirabellensaft Date: Tue, 21 Feb 2023 13:20:04 +0100 Subject: [PATCH] correct crate name --- down-the-stack/apps/src/bin/hello.rs | 2 +- down-the-stack/apps/src/bin/uarte_print.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/down-the-stack/apps/src/bin/hello.rs b/down-the-stack/apps/src/bin/hello.rs index 42b4269..9fc37f3 100644 --- a/down-the-stack/apps/src/bin/hello.rs +++ b/down-the-stack/apps/src/bin/hello.rs @@ -17,7 +17,7 @@ fn main() -> ! { // ! is the 'never' type: this function never returns // initializes the peripherals - dk::init().unwrap(); + dk_bsc::init().unwrap(); defmt::println!("Hello, world!"); // :wave: diff --git a/down-the-stack/apps/src/bin/uarte_print.rs b/down-the-stack/apps/src/bin/uarte_print.rs index b7d73a0..b54b044 100644 --- a/down-the-stack/apps/src/bin/uarte_print.rs +++ b/down-the-stack/apps/src/bin/uarte_print.rs @@ -12,7 +12,7 @@ fn main() -> ! { // to enable more verbose logs, go to your `Cargo.toml` and set defmt logging levels // to `defmt-trace` by changing the `default = []` entry in `[features]` - let board = dk_template::init().unwrap(); + let board = dk_bsc::init().unwrap(); let button_1 = board.buttons.b_1; let mut uarte = board.uarte;