correct crate name

This commit is contained in:
Mirabellensaft 2023-02-21 13:20:04 +01:00
parent c4cc515666
commit aa907e9f20
2 changed files with 2 additions and 2 deletions

View file

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

View file

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