-
- Downloads
production v1
Showing
- .cargo/config 1 addition, 0 deletions.cargo/config
- Cargo.toml 11 additions, 10 deletionsCargo.toml
- README.md 17 additions, 119 deletionsREADME.md
- examples/allocator.rs 0 additions, 56 deletionsexamples/allocator.rs
- examples/crash.rs 0 additions, 96 deletionsexamples/crash.rs
- examples/device.rs 0 additions, 62 deletionsexamples/device.rs
- examples/exception.rs 0 additions, 37 deletionsexamples/exception.rs
- examples/hello.rs 0 additions, 20 deletionsexamples/hello.rs
- examples/itm.rs 0 additions, 33 deletionsexamples/itm.rs
- examples/panic.rs 0 additions, 28 deletionsexamples/panic.rs
- examples/test_on_host.rs 0 additions, 57 deletionsexamples/test_on_host.rs
- memory.x 1 addition, 1 deletionmemory.x
- src/main.rs 29 additions, 8 deletionssrc/main.rs
... | @@ -9,22 +9,23 @@ version = "0.1.0" | ... | @@ -9,22 +9,23 @@ version = "0.1.0" |
cortex-m = "0.6.0" | cortex-m = "0.6.0" | ||
cortex-m-rt = "0.6.13" | cortex-m-rt = "0.6.13" | ||
cortex-m-rtic = "0.5.5" | cortex-m-rtic = "0.5.5" | ||
# tracing | |||
cortex-m-semihosting = "0.3.5" | cortex-m-semihosting = "0.3.5" | ||
rtt-target = { version = "0.2.2", features = ["cortex-m"] } | |||
# panic handlers | |||
panic-halt = "0.2.0" | panic-halt = "0.2.0" | ||
panic-semihosting = "0.5.4" | panic-semihosting = "0.5.4" | ||
panic-rtt-target = { version = "0.1.1", features = ["cortex-m"] } | |||
# Uncomment for the panic example. | |||
# panic-itm = "0.4.1" | |||
# Uncomment for the allocator example. | |||
# alloc-cortex-m = "0.4.0" | |||
# Update `memory.x`, set target to `thumbv7em-none-eabihf` in `.cargo/config`, | |||
# and then use `cargo build --examples device` to build it. | |||
[dependencies.stm32f4] | [dependencies.stm32f4] | ||
version = "0.12.1" | version = "0.12.1" | ||
features = ["stm32f411", "rt"] | features = ["stm32f411", "rt"] | ||
[features] | |||
nightly = ["cortex-m/inline-asm"] | |||
# this lets you use `cargo fix`! | # this lets you use `cargo fix`! | ||
[[bin]] | [[bin]] | ||
name = "app" | name = "app" | ||
... | ... |
examples/allocator.rs
deleted
100644 → 0
examples/crash.rs
deleted
100644 → 0
examples/device.rs
deleted
100644 → 0
examples/exception.rs
deleted
100644 → 0
examples/hello.rs
deleted
100644 → 0
examples/itm.rs
deleted
100644 → 0
examples/panic.rs
deleted
100644 → 0
examples/test_on_host.rs
deleted
100644 → 0
Please register or sign in to comment