-
- Downloads
bare1 exercise added
Showing
- .cargo/config 3 additions, 0 deletions.cargo/config
- CHANGELOG.md 4 additions, 0 deletionsCHANGELOG.md
- Cargo.toml 1 addition, 2 deletionsCargo.toml
- README.md 11 additions, 1 deletionREADME.md
- examples/pmw3389.rs 2 additions, 5 deletionsexamples/pmw3389.rs
- examples/rtic_bare1.rs 389 additions, 0 deletionsexamples/rtic_bare1.rs
- src/pmw3389.rs 1 addition, 16 deletionssrc/pmw3389.rs
- src/pmw3389e.rs 4 additions, 7 deletionssrc/pmw3389e.rs
... | @@ -6,7 +6,7 @@ name = "app" | ... | @@ -6,7 +6,7 @@ name = "app" |
version = "0.1.0" | version = "0.1.0" | ||
[dependencies] | [dependencies] | ||
cortex-m = "0.7.1" | cortex-m = { version = "0.7.1", features = ["linker-plugin-lto"] } | ||
cortex-m-rt = "0.6.13" | cortex-m-rt = "0.6.13" | ||
cortex-m-semihosting = "0.3.7" | cortex-m-semihosting = "0.3.7" | ||
cortex-m-rtic = "0.5.5" | cortex-m-rtic = "0.5.5" | ||
... | @@ -44,7 +44,6 @@ features = ["rt", "stm32f411", "usb_fs"] | ... | @@ -44,7 +44,6 @@ features = ["rt", "stm32f411", "usb_fs"] |
# Enable to use your forked/cloned local repo | # Enable to use your forked/cloned local repo | ||
# path = "../stm32f4xx-hal" | # path = "../stm32f4xx-hal" | ||
# this lets you use `cargo fix`! | # this lets you use `cargo fix`! | ||
[[bin]] | [[bin]] | ||
name = "app" | name = "app" | ||
... | ... |
examples/rtic_bare1.rs
0 → 100644
Please register or sign in to comment