aboutsummaryrefslogtreecommitdiff
path: root/examples/user-struct.rs
diff options
context:
space:
mode:
Diffstat (limited to 'examples/user-struct.rs')
-rw-r--r--examples/user-struct.rs56
1 files changed, 56 insertions, 0 deletions
diff --git a/examples/user-struct.rs b/examples/user-struct.rs
new file mode 100644
index 00000000..0ac49348
--- /dev/null
+++ b/examples/user-struct.rs
@@ -0,0 +1,56 @@
+#![deny(unsafe_code)]
+#![deny(warnings)]
+#![feature(proc_macro)]
+#![no_std]
+
+extern crate cortex_m;
+extern crate cortex_m_rtfm as rtfm;
+extern crate panic_abort;
+extern crate stm32f103xx;
+
+use cortex_m::asm;
+use rtfm::app;
+
+pub struct Foo(u32);
+
+app! {
+ device: stm32f103xx,
+
+ resources: {
+ static FOO: Foo = Foo(0);
+ static BAR: Foo;
+ },
+
+ free_interrupts: [EXTI0],
+
+ init: {
+ async: [a],
+ async_after: [b],
+ },
+
+ tasks: {
+ a: {
+ input: Foo,
+ },
+
+ b: {
+ input: Foo,
+ },
+ },
+}
+
+#[inline(always)]
+fn init(_ctxt: init::Context) -> init::LateResources {
+ init::LateResources { BAR: Foo(0) }
+}
+
+#[inline(always)]
+fn idle(_ctxt: idle::Context) -> ! {
+ loop {
+ asm::wfi();
+ }
+}
+
+fn a(_ctxt: a::Context) {}
+
+fn b(_ctxt: b::Context) {}