Commits on Source (21)
-
Jorge Aparicio authored
-
Jorge Aparicio authored
this unbreaks the "generics" example
-
Jorge Aparicio authored
-
Jorge Aparicio authored
-
Jorge Aparicio authored
-
Jorge Aparicio authored
-
homunkulus authored
safe `&'static mut` references via init.resources see RFC #59 for details
-
Jorge Aparicio authored
-
Jorge Aparicio authored
-
Jorge Aparicio authored
-
Jorge Aparicio authored
-
homunkulus authored
add a Cargo feature, cm7-r0p1, to fix a Cortex-M7 BASEPRI erratum closes #53 alternative solution to #54 depends on japaric/cortex-m#72
-
Jorge Aparicio authored
-
homunkulus authored
adapt to changes in the cortex-m crate None
-
Jorge Aparicio authored
-
homunkulus authored
v0.3.0 None
-
Jorge Aparicio authored
-
homunkulus authored
fix documentation link None
-
Jorge Aparicio authored
-
homunkulus authored
specify both the path and version of the cortex-m-rtfm-macros dependency this seems to be required for cargo publish to Just Work cc @jonas-schievink
-
Jorge Aparicio authored
Showing
- .gitignore 1 addition, 0 deletions.gitignore
- CHANGELOG.md 30 additions, 1 deletionCHANGELOG.md
- Cargo.toml 10 additions, 8 deletionsCargo.toml
- ci/script.sh 8 additions, 1 deletionci/script.sh
- examples/custom-type.rs 50 additions, 0 deletionsexamples/custom-type.rs
- examples/full-syntax.rs 7 additions, 7 deletionsexamples/full-syntax.rs
- examples/generics.rs 1 addition, 1 deletionexamples/generics.rs
- examples/late-resources.rs 0 additions, 1 deletionexamples/late-resources.rs
- examples/one-task.rs 4 additions, 4 deletionsexamples/one-task.rs
- examples/preemption.rs 3 additions, 3 deletionsexamples/preemption.rs
- examples/safe-static-mut-ref.rs 32 additions, 0 deletionsexamples/safe-static-mut-ref.rs
- examples/two-tasks.rs 4 additions, 4 deletionsexamples/two-tasks.rs
- gen-examples.sh 1 addition, 0 deletionsgen-examples.sh
- macros/Cargo.toml 2 additions, 2 deletionsmacros/Cargo.toml
- macros/src/analyze.rs 7 additions, 0 deletionsmacros/src/analyze.rs
- macros/src/check.rs 31 additions, 0 deletionsmacros/src/check.rs
- macros/src/lib.rs 15 additions, 7 deletionsmacros/src/lib.rs
- macros/src/trans.rs 225 additions, 213 deletionsmacros/src/trans.rs
- src/examples/_0_zero_tasks.rs 4 additions, 2 deletionssrc/examples/_0_zero_tasks.rs
- src/examples/_1_one_task.rs 26 additions, 17 deletionssrc/examples/_1_one_task.rs
... | ... | @@ -10,25 +10,27 @@ keywords = ["arm", "cortex-m"] |
license = "MIT OR Apache-2.0" | ||
name = "cortex-m-rtfm" | ||
repository = "https://github.com/japaric/cortex-m-rtfm" | ||
version = "0.3.0" | ||
version = "0.3.1" | ||
[dependencies] | ||
cortex-m = { git = "https://github.com/japaric/cortex-m" } | ||
cortex-m = "0.4.0" | ||
cortex-m-rtfm-macros = { path = "macros", version = "0.3.0" } | ||
rtfm-core = "0.2.0" | ||
untagged-option = "0.1.1" | ||
rtfm-core = "0.1.0" | ||
cortex-m-rtfm-macros = { path = "macros" } | ||
[target.'cfg(target_arch = "x86_64")'.dev-dependencies] | ||
compiletest_rs = "0.3.3" | ||
compiletest_rs = "0.3.5" | ||
[dev-dependencies.cortex-m-rt] | ||
features = ["abort-on-panic"] | ||
version = "0.3.3" | ||
version = "0.3.9" | ||
[dev-dependencies.stm32f103xx] | ||
features = ["rt"] | ||
git = "https://github.com/japaric/stm32f103xx" | ||
# version = "0.8.0" | ||
version = "0.8.0" | ||
[features] | ||
cm7-r0p1 = ["cortex-m/cm7-r0p1"] | ||
[profile.release] | ||
lto = true |
examples/custom-type.rs
0 → 100644
examples/safe-static-mut-ref.rs
0 → 100644