From c4cc5156668e6a7805d99b1858d95a8ac507f831 Mon Sep 17 00:00:00 2001 From: Mirabellensaft Date: Mon, 20 Feb 2023 18:47:54 +0100 Subject: [PATCH] rename folder --- down-the-stack/apps/Cargo.toml | 2 +- down-the-stack/apps/src/bin/button.rs | 2 +- down-the-stack/{dk_template => dk_bsc}/Cargo.toml | 0 down-the-stack/{dk_template => dk_bsc}/README.md | 0 down-the-stack/{dk_template => dk_bsc}/build.rs | 0 down-the-stack/{dk_template => dk_bsc}/memory.x | 0 down-the-stack/{dk_template => dk_bsc}/src/lib.rs | 0 down-the-stack/{dk_template => dk_bsc}/src/lib_solution.rs | 0 8 files changed, 2 insertions(+), 2 deletions(-) rename down-the-stack/{dk_template => dk_bsc}/Cargo.toml (100%) rename down-the-stack/{dk_template => dk_bsc}/README.md (100%) rename down-the-stack/{dk_template => dk_bsc}/build.rs (100%) rename down-the-stack/{dk_template => dk_bsc}/memory.x (100%) rename down-the-stack/{dk_template => dk_bsc}/src/lib.rs (100%) rename down-the-stack/{dk_template => dk_bsc}/src/lib_solution.rs (100%) 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