diff --git a/down-the-stack/apps/Cargo.toml b/down-the-stack/apps/Cargo.toml index 701a40e..4dd8f81 100644 --- a/down-the-stack/apps/Cargo.toml +++ b/down-the-stack/apps/Cargo.toml @@ -8,7 +8,7 @@ version = "0.0.0" [dependencies] cortex-m = {version = "0.7.6", features = ["critical-section-single-core"]} cortex-m-rt = "0.7.2" -dk_template = { path = "../dk_template" } +dk_template = { path = "../dk_bsc" } heapless = "0.7.16" panic-probe = { version = "0.3.0", features = ["print-defmt"] } defmt = "0.3.2" diff --git a/down-the-stack/apps/src/bin/button.rs b/down-the-stack/apps/src/bin/button.rs index 41a3a06..35af227 100644 --- a/down-the-stack/apps/src/bin/button.rs +++ b/down-the-stack/apps/src/bin/button.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 mut led = board.leds; let button_1 = board.buttons.b_1; diff --git a/down-the-stack/dk_template/Cargo.toml b/down-the-stack/dk_bsc/Cargo.toml similarity index 100% rename from down-the-stack/dk_template/Cargo.toml rename to down-the-stack/dk_bsc/Cargo.toml diff --git a/down-the-stack/dk_template/README.md b/down-the-stack/dk_bsc/README.md similarity index 100% rename from down-the-stack/dk_template/README.md rename to down-the-stack/dk_bsc/README.md diff --git a/down-the-stack/dk_template/build.rs b/down-the-stack/dk_bsc/build.rs similarity index 100% rename from down-the-stack/dk_template/build.rs rename to down-the-stack/dk_bsc/build.rs diff --git a/down-the-stack/dk_template/memory.x b/down-the-stack/dk_bsc/memory.x similarity index 100% rename from down-the-stack/dk_template/memory.x rename to down-the-stack/dk_bsc/memory.x diff --git a/down-the-stack/dk_template/src/lib.rs b/down-the-stack/dk_bsc/src/lib.rs similarity index 100% rename from down-the-stack/dk_template/src/lib.rs rename to down-the-stack/dk_bsc/src/lib.rs diff --git a/down-the-stack/dk_template/src/lib_solution.rs b/down-the-stack/dk_bsc/src/lib_solution.rs similarity index 100% rename from down-the-stack/dk_template/src/lib_solution.rs rename to down-the-stack/dk_bsc/src/lib_solution.rs