-
- Downloads
drop the Static wrapper
Showing
- .gitignore 1 addition, 0 deletions.gitignore
- Cargo.toml 2 additions, 1 deletionCargo.toml
- examples/full-syntax.rs 5 additions, 5 deletionsexamples/full-syntax.rs
- examples/one-task.rs 2 additions, 2 deletionsexamples/one-task.rs
- examples/preemption.rs 2 additions, 2 deletionsexamples/preemption.rs
- examples/two-tasks.rs 2 additions, 2 deletionsexamples/two-tasks.rs
- macros/src/trans.rs 13 additions, 13 deletionsmacros/src/trans.rs
- src/lib.rs 1 addition, 1 deletionsrc/lib.rs
... | @@ -15,7 +15,8 @@ version = "0.3.0" | ... | @@ -15,7 +15,8 @@ version = "0.3.0" |
[dependencies] | [dependencies] | ||
cortex-m = { git = "https://github.com/japaric/cortex-m" } | cortex-m = { git = "https://github.com/japaric/cortex-m" } | ||
untagged-option = "0.1.1" | untagged-option = "0.1.1" | ||
rtfm-core = "0.1.0" | # rtfm-core = "0.1.0" | ||
rtfm-core = { git = "https://github.com/japaric/rtfm-core", branch = "no-static" } | |||
cortex-m-rtfm-macros = { path = "macros" } | cortex-m-rtfm-macros = { path = "macros" } | ||
[target.'cfg(target_arch = "x86_64")'.dev-dependencies] | [target.'cfg(target_arch = "x86_64")'.dev-dependencies] | ||
... | ... |
Please register or sign in to comment