-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
make all the APIs async, drop all the startup stuff
to use this crate you must now use the cortex-m-quickstart template. See the crate level documentation for instructions.
- Loading branch information
Showing
96 changed files
with
2,400 additions
and
3,798 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
*.org | ||
*.rs.bk | ||
*.svd | ||
**/*.rs.bk | ||
Cargo.lock | ||
target | ||
target/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,43 +1,17 @@ | ||
[package] | ||
authors = ["Jorge Aparicio <[email protected]>"] | ||
build = "build.rs" | ||
description = "A crate to play with the STM32F3DISCOVERY" | ||
authors = ["Jorge Aparicio <[email protected]>"] | ||
categories = ["asynchronous", "embedded", "hardware-support", "no-std"] | ||
description = "Board Support Crate for the STM32F3DISCOVERY" | ||
documentation = "https://docs.rs/f3" | ||
keywords = ["arm", "cortex-m", "stm32f3discovery", "stm32"] | ||
keywords = ["arm", "cortex-m", "stm32"] | ||
license = "MIT OR Apache-2.0" | ||
name = "f3" | ||
repository = "https://github.com/japaric/f3" | ||
version = "0.3.0" | ||
version = "0.4.0" | ||
|
||
[dependencies] | ||
cortex-m = "0.1.5" | ||
ref_slice = "1.1.1" | ||
stm32f30x-memory-map = "0.1.0" | ||
stm32f30x = "0.4.0" | ||
|
||
[target.'cfg(target_arch = "arm")'.dependencies.alloc-cortex-m] | ||
optional = true | ||
version = "0.2.0" | ||
|
||
[dependencies.compiler-builtins-snapshot] | ||
features = ["memcpy"] | ||
version = "0.0.20161008" | ||
|
||
[dependencies.r0] | ||
optional = true | ||
version = "0.1.0" | ||
|
||
[dev-dependencies] | ||
m = "0.1.0" | ||
|
||
[features] | ||
alloc = ["alloc-cortex-m", "default-init", "static-ram"] | ||
default = ["alloc", "default-exception-handler", "default-init", "default-panic-fmt", "examples", "interrupts", "static-ram"] | ||
default-exception-handler = [] | ||
default-init = [] | ||
default-panic-fmt = [] | ||
examples = [] | ||
interrupts = [] | ||
static-ram = ["r0"] | ||
|
||
[profile.release] | ||
lto = true | ||
[dependencies.cast] | ||
default-features = false | ||
version = "0.2.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.