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;