aboutsummaryrefslogtreecommitdiff
path: root/examples/types.rs
diff options
context:
space:
mode:
authorJorge Aparicio <jorge@japaric.io>2018-11-04 18:50:42 +0100
committerJorge Aparicio <jorge@japaric.io>2018-11-04 18:50:42 +0100
commit37a0692a0fe5d9b41b65728d496b6856a1152dcc (patch)
treebeb91d9c1caa0fb5e16e61236b6b92739766edd2 /examples/types.rs
parent16d473a9b6827aa7ffa9ce92e4e532eff9a091d2 (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.rs3
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;