-
- Downloads
debugging sort of works
Showing
- .cargo/config 2 additions, 2 deletions.cargo/config
- .vscode/launch.json 44 additions, 0 deletions.vscode/launch.json
- .vscode/tasks.json 31 additions, 0 deletions.vscode/tasks.json
- Cargo.toml 8 additions, 7 deletionsCargo.toml
- README.md 3 additions, 3 deletionsREADME.md
- examples/hello-world.rs 2 additions, 2 deletionsexamples/hello-world.rs
- examples/hello.rs 3 additions, 3 deletionsexamples/hello.rs
- src/adc.rs 1 addition, 1 deletionsrc/adc.rs
- src/lib.rs 35 additions, 34 deletionssrc/lib.rs
.vscode/launch.json
0 → 100644
.vscode/tasks.json
0 → 100644
[package] | ||
authors = ["Jorge Aparicio <jorge@japaric.io>"] | ||
authors = ["Per Lindgren <per.lindgren@ltu.se>"] | ||
categories = ["asynchronous", "embedded", "hardware-support", "no-std"] | ||
description = "Board Support Crate for the Blue Pill" | ||
description = "Board Support Crate for the Nucleo-64 stm32f401x" | ||
keywords = ["arm", "cortex-m", "stm32"] | ||
license = "MIT OR Apache-2.0" | ||
name = "blue-pill" | ||
repository = "https://github.com/japaric/blue-pill" | ||
name = "nucleo-64" | ||
repository = "https://gitlab.henriktjader.com/pln/nucleo-64" | ||
version = "0.1.0" | ||
[dependencies] | ||
... | ... | @@ -23,12 +23,13 @@ rev = "7d904f515d15fd5fe7ea34e18820ea83e2651fa2" |
[dependencies.nb] | ||
git = "https://github.com/japaric/nb" | ||
[dependencies.stm32f103xx] | ||
[dependencies.stm32f40x] | ||
git = "https://gitlab.henriktjader.com/pln/STM32F40x" | ||
features = ["rt"] | ||
version = "0.7.2" | ||
#version = "0.7.2" | ||
[dev-dependencies] | ||
cortex-m = "0.3.0" | ||
cortex-m = "0.3.1" | ||
cortex-m-rtfm = "0.2.0" | ||
cortex-m-semihosting = "0.2.0" | ||
... | ... |
Please register or sign in to comment