diff options
| author | Jorge Aparicio <jorge@japaric.io> | 2018-11-04 18:50:42 +0100 |
|---|---|---|
| committer | Jorge Aparicio <jorge@japaric.io> | 2018-11-04 18:50:42 +0100 |
| commit | 37a0692a0fe5d9b41b65728d496b6856a1152dcc (patch) | |
| tree | beb91d9c1caa0fb5e16e61236b6b92739766edd2 /examples/types.rs | |
| parent | 16d473a9b6827aa7ffa9ce92e4e532eff9a091d2 (diff) | |
impl Mutex on all shared resources
document how to write generic code that operates on resources
Diffstat (limited to 'examples/types.rs')
| -rw-r--r-- | examples/types.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/types.rs b/examples/types.rs index 6606208..c1b8cd6 100644 --- a/examples/types.rs +++ b/examples/types.rs @@ -8,7 +8,7 @@ extern crate panic_semihosting; use cortex_m_semihosting::debug; -use rtfm::{app, Instant}; +use rtfm::{app, Exclusive, Instant}; #[app(device = lm3s6965)] const APP: () = { @@ -43,6 +43,7 @@ const APP: () = { #[task(priority = 2, resources = [SHARED], schedule = [foo], spawn = [foo])] fn foo() { let _: Instant = scheduled; + let _: Exclusive<u32> = resources.SHARED; let _: foo::Resources = resources; let _: foo::Schedule = schedule; let _: foo::Spawn = spawn; |
