-
- Downloads
Update dependencies and add implementation of HAL for serial.
Showing
- Cargo.toml 11 additions, 1 deletionCargo.toml
- examples/loopback.rs 9 additions, 5 deletionsexamples/loopback.rs
- src/dma.rs 259 additions, 0 deletionssrc/dma.rs
- src/frequency.rs 86 additions, 3 deletionssrc/frequency.rs
- src/lib.rs 16 additions, 1 deletionsrc/lib.rs
- src/serial.rs 338 additions, 57 deletionssrc/serial.rs
- src/time.rs 93 additions, 0 deletionssrc/time.rs
- src/timer.rs 1 addition, 3 deletionssrc/timer.rs
... | @@ -9,9 +9,19 @@ name = "f3" | ... | @@ -9,9 +9,19 @@ name = "f3" |
repository = "https://github.com/japaric/f3" | repository = "https://github.com/japaric/f3" | ||
version = "0.5.0" | version = "0.5.0" | ||
[dependencies] | |||
static-ref = "0.2.0" | |||
[dependencies.cast] | [dependencies.cast] | ||
default-features = false | default-features = false | ||
version = "0.2.0" | version = "0.2.2" | ||
[dependencies.embedded-hal] | |||
git = "https://github.com/japaric/embedded-hal" | |||
rev = "7d904f515d15fd5fe7ea34e18820ea83e2651fa2" | |||
[dependencies.nb] | |||
git = "https://github.com/japaric/nb" | |||
[dependencies.stm32f30x] | [dependencies.stm32f30x] | ||
features = ["rt"] | features = ["rt"] | ||
... | ... |
src/dma.rs
0 → 100644
src/time.rs
0 → 100644
Please register or sign in to comment