diff options
| author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2020-11-14 16:11:13 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-11-14 16:11:13 +0000 |
| commit | 9527c921923f6b8e19767b1bf52be758817d7035 (patch) | |
| tree | de8ea7d2f2a38a1fb0ea3043d2daf33b44e8dd34 | |
| parent | 2ebd81fee2dc4c793a7c684c5c9050d4a5313bde (diff) | |
| parent | f111c825ba3ab886a1a6bf63a0689c3d63b0f441 (diff) | |
Merge #415
415: Multilock support r=AfoHT a=korken89
Co-authored-by: Emil Fresk <emil.fresk@gmail.com>
| -rw-r--r-- | .github/workflows/build.yml | 1 | ||||
| -rw-r--r-- | CHANGELOG.md | 4 | ||||
| -rw-r--r-- | Cargo.toml | 2 | ||||
| -rw-r--r-- | book/en/src/by-example/resources.md | 8 | ||||
| -rw-r--r-- | ci/expected/multilock.run | 4 | ||||
| -rw-r--r-- | examples/multilock.rs | 78 | ||||
| -rw-r--r-- | macros/src/codegen/hardware_tasks.rs | 1 | ||||
| -rw-r--r-- | macros/src/codegen/idle.rs | 1 | ||||
| -rw-r--r-- | macros/src/codegen/module.rs | 2 | ||||
| -rw-r--r-- | macros/src/codegen/software_tasks.rs | 1 | ||||
| -rw-r--r-- | src/lib.rs | 2 |
11 files changed, 102 insertions, 2 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 739c7bd..e729db6 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -243,6 +243,7 @@ jobs: resource lock + multilock late only-shared-access diff --git a/CHANGELOG.md b/CHANGELOG.md index 4ccaba8..a5ff05f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,10 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +### Added + +- Support for multi-locks, see `examples/multilock.rs` for syntax. + ## [v0.6.0-alpha.0] - 2020-11-14 ### Added @@ -57,7 +57,7 @@ required-features = ["__v7"] [dependencies] cortex-m = "0.6.2" cortex-m-rtic-macros = { path = "macros", version = "0.6.0-alpha.0" } -rtic-core = "0.3.0" +rtic-core = "0.3.1" cortex-m-rt = "0.6.9" heapless = "0.5.0" bare-metal = "1.0.0" diff --git a/book/en/src/by-example/resources.md b/book/en/src/by-example/resources.md index 301961d..3a3e0b7 100644 --- a/book/en/src/by-example/resources.md +++ b/book/en/src/by-example/resources.md @@ -64,6 +64,14 @@ $ cargo run --example lock {{#include ../../../../ci/expected/lock.run}} ``` +## Multi-lock + +As an extension to `lock`, and to reduce rightward drift, locks can be taken as tuples. The following examples shows this in use: + +``` rust +{{#include ../../../../examples/multilock.rs}} +``` + ## Late resources Late resources are resources that are not given an initial value at compile time using the `#[init]` attribute but instead are initialized at runtime using the `init::LateResources` values returned by the `init` function. diff --git a/ci/expected/multilock.run b/ci/expected/multilock.run new file mode 100644 index 0000000..10a377c --- /dev/null +++ b/ci/expected/multilock.run @@ -0,0 +1,4 @@ +Multiple single locks +Multiple single locks, s1: 1, s2: 1, s3: 1 +Multilock! +Multiple single locks, s1: 2, s2: 2, s3: 2 diff --git a/examples/multilock.rs b/examples/multilock.rs new file mode 100644 index 0000000..a6985df --- /dev/null +++ b/examples/multilock.rs @@ -0,0 +1,78 @@ +//! examples/mutlilock.rs +//! +//! The multi-lock feature example. + +#![deny(unsafe_code)] +#![deny(warnings)] +#![no_main] +#![no_std] + +use panic_semihosting as _; + +#[rtic::app(device = lm3s6965)] +mod app { + use cortex_m_semihosting::{debug, hprintln}; + use lm3s6965::Interrupt; + + #[resources] + struct Resources { + #[init(0)] + shared1: u32, + #[init(0)] + shared2: u32, + #[init(0)] + shared3: u32, + } + + #[init] + fn init(_: init::Context) -> init::LateResources { + rtic::pend(Interrupt::GPIOA); + + init::LateResources {} + } + + // when omitted priority is assumed to be `1` + #[task(binds = GPIOA, resources = [shared1, shared2, shared3])] + fn locks(c: locks::Context) { + let mut s1 = c.resources.shared1; + let mut s2 = c.resources.shared2; + let mut s3 = c.resources.shared3; + + hprintln!("Multiple single locks").unwrap(); + s1.lock(|s1| { + s2.lock(|s2| { + s3.lock(|s3| { + *s1 += 1; + *s2 += 1; + *s3 += 1; + + hprintln!( + "Multiple single locks, s1: {}, s2: {}, s3: {}", + *s1, + *s2, + *s3 + ) + .unwrap(); + }) + }) + }); + + hprintln!("Multilock!").unwrap(); + + (s1, s2, s3).lock(|s1, s2, s3| { + *s1 += 1; + *s2 += 1; + *s3 += 1; + + hprintln!( + "Multiple single locks, s1: {}, s2: {}, s3: {}", + *s1, + *s2, + *s3 + ) + .unwrap(); + }); + + debug::exit(debug::EXIT_SUCCESS); + } +} diff --git a/macros/src/codegen/hardware_tasks.rs b/macros/src/codegen/hardware_tasks.rs index c9d0297..6930d3e 100644 --- a/macros/src/codegen/hardware_tasks.rs +++ b/macros/src/codegen/hardware_tasks.rs @@ -105,6 +105,7 @@ pub fn codegen( #[allow(non_snake_case)] fn #name(#(#locals_pat,)* #context: #name::Context) { use rtic::Mutex as _; + use rtic::mutex_prelude::*; #(#stmts)* } diff --git a/macros/src/codegen/idle.rs b/macros/src/codegen/idle.rs index c8c8955..b1d2e00 100644 --- a/macros/src/codegen/idle.rs +++ b/macros/src/codegen/idle.rs @@ -68,6 +68,7 @@ pub fn codegen( #[allow(non_snake_case)] fn #name(#(#locals_pat,)* #context: #name::Context) -> ! { use rtic::Mutex as _; + use rtic::mutex_prelude::*; #(#stmts)* } diff --git a/macros/src/codegen/module.rs b/macros/src/codegen/module.rs index 838a989..2ff4801 100644 --- a/macros/src/codegen/module.rs +++ b/macros/src/codegen/module.rs @@ -219,6 +219,7 @@ pub fn codegen( pub fn spawn(#(#args,)*) -> Result<(), #ty> { // #let_instant // do we need it? use rtic::Mutex as _; + use rtic::mutex_prelude::*; let input = #tupled; @@ -258,6 +259,7 @@ pub fn codegen( ) -> Result<(), #ty> { unsafe { use rtic::Mutex as _; + use rtic::mutex_prelude::*; let input = #tupled; if let Some(index) = rtic::export::interrupt::free(|_| #app_path::#fq.dequeue()) { diff --git a/macros/src/codegen/software_tasks.rs b/macros/src/codegen/software_tasks.rs index 833e338..9cb5f7a 100644 --- a/macros/src/codegen/software_tasks.rs +++ b/macros/src/codegen/software_tasks.rs @@ -111,6 +111,7 @@ pub fn codegen( #[allow(non_snake_case)] fn #name(#(#locals_pat,)* #context: #name::Context #(,#inputs)*) { use rtic::Mutex as _; + use rtic::mutex_prelude::*; #(#stmts)* } @@ -43,7 +43,7 @@ use cortex_m::{ }; use cortex_m_rt as _; // vector table pub use cortex_m_rtic_macros::app; -pub use rtic_core::{Exclusive, Mutex}; +pub use rtic_core::{prelude as mutex_prelude, Exclusive, Mutex}; #[cfg(armv7m)] pub mod cyccnt; |
