From d657238c0c193de6fe98ba088fc4823eb856c069 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rn-Michael?= <40151420+ldericher@users.noreply.github.com> Date: Tue, 27 Feb 2024 23:17:32 +0000 Subject: [PATCH] rename project --- .vscode/launch.json | 2 +- Cargo.lock | 24 ++++++++++++------------ Cargo.toml | 4 ++-- 3 files changed, 15 insertions(+), 15 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 9ecadf7..6fdb447 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -7,7 +7,7 @@ { "name": "Cortex Debug", "cwd": "${workspaceFolder}", - "executable": "${workspaceFolder}/target/thumbv7m-none-eabi/debug/ruststm", + "executable": "${workspaceFolder}/target/thumbv7m-none-eabi/debug/bluepill-rust-blinky", "request": "launch", "type": "cortex-debug", "preLaunchTask": "cargo build", diff --git a/Cargo.lock b/Cargo.lock index e118d25..64b6716 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -29,6 +29,18 @@ version = "1.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" +[[package]] +name = "bluepill-rust-blinky" +version = "0.1.0" +dependencies = [ + "cortex-m", + "cortex-m-rt", + "embedded-hal 1.0.0", + "nb 1.1.0", + "panic-halt", + "stm32f1xx-hal", +] + [[package]] name = "bxcan" version = "0.7.0" @@ -171,18 +183,6 @@ dependencies = [ "semver", ] -[[package]] -name = "ruststm" -version = "0.1.0" -dependencies = [ - "cortex-m", - "cortex-m-rt", - "embedded-hal 1.0.0", - "nb 1.1.0", - "panic-halt", - "stm32f1xx-hal", -] - [[package]] name = "semver" version = "0.9.0" diff --git a/Cargo.toml b/Cargo.toml index e2cec49..17a6d4c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,5 +1,5 @@ [package] -name = "ruststm" +name = "bluepill-rust-blinky" version = "0.1.0" edition = "2021" @@ -15,4 +15,4 @@ panic-halt = "0.2.0" [dependencies.stm32f1xx-hal] version = "0.10.0" -features = ["rt", "stm32f103", "medium"] \ No newline at end of file +features = ["rt", "stm32f103", "medium"]