aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
Diffstat (limited to 'examples')
-rw-r--r--examples/baseline.rs4
-rw-r--r--examples/binds.rs4
-rw-r--r--examples/capacity.rs4
-rw-r--r--examples/cfg.rs4
-rw-r--r--examples/destructure.rs4
-rw-r--r--examples/generics.rs4
-rw-r--r--examples/hardware.rs4
-rw-r--r--examples/idle.rs4
-rw-r--r--examples/init.rs4
-rw-r--r--examples/lock.rs4
-rw-r--r--examples/message.rs4
-rw-r--r--examples/not-send.rs4
-rw-r--r--examples/not-sync.rs4
-rw-r--r--examples/periodic.rs4
-rw-r--r--examples/peripherals-taken.rs4
-rw-r--r--examples/pool.rs4
-rw-r--r--examples/preempt.rs4
-rw-r--r--examples/ramfunc.rs4
-rw-r--r--examples/resource-user-struct.rs4
-rw-r--r--examples/resource.rs4
-rw-r--r--examples/schedule.rs4
-rw-r--r--examples/shared-with-init.rs4
-rw-r--r--examples/t-binds.rs4
-rw-r--r--examples/t-cfg.rs4
-rw-r--r--examples/t-htask-main.rs6
-rw-r--r--examples/t-idle-main.rs4
-rw-r--r--examples/t-init-main.rs4
-rw-r--r--examples/t-resource.rs4
-rw-r--r--examples/t-schedule.rs4
-rw-r--r--examples/t-spawn.rs4
-rw-r--r--examples/t-stask-main.rs4
-rw-r--r--examples/task.rs4
-rw-r--r--examples/types.rs4
33 files changed, 100 insertions, 34 deletions
diff --git a/examples/baseline.rs b/examples/baseline.rs
index e517bf08..3ab40dbb 100644
--- a/examples/baseline.rs
+++ b/examples/baseline.rs
@@ -13,13 +13,15 @@ use panic_semihosting as _;
#[rtic::app(device = lm3s6965, monotonic = rtic::cyccnt::CYCCNT)]
mod app {
#[init(spawn = [foo])]
- fn init(cx: init::Context) {
+ fn init(cx: init::Context) -> init::LateResources {
// omitted: initialization of `CYCCNT`
hprintln!("init(baseline = {:?})", cx.start).unwrap();
// `foo` inherits the baseline of `init`: `Instant(0)`
cx.spawn.foo().unwrap();
+
+ init::LateResources {}
}
#[task(schedule = [foo])]
diff --git a/examples/binds.rs b/examples/binds.rs
index 9c73433b..42010ae2 100644
--- a/examples/binds.rs
+++ b/examples/binds.rs
@@ -13,10 +13,12 @@ use panic_semihosting as _;
#[rtic::app(device = lm3s6965)]
mod app {
#[init]
- fn init(_: init::Context) {
+ fn init(_: init::Context) -> init::LateResources {
rtic::pend(Interrupt::UART0);
hprintln!("init").unwrap();
+
+ init::LateResources {}
}
#[idle]
diff --git a/examples/capacity.rs b/examples/capacity.rs
index 7ccb086a..ba8b15b0 100644
--- a/examples/capacity.rs
+++ b/examples/capacity.rs
@@ -12,8 +12,10 @@ use panic_semihosting as _;
#[rtic::app(device = lm3s6965)]
mod app {
#[init]
- fn init(_: init::Context) {
+ fn init(_: init::Context) -> init::LateResources {
rtic::pend(Interrupt::UART0);
+
+ init::LateResources {}
}
#[task(binds = UART0, spawn = [foo, bar])]
diff --git a/examples/cfg.rs b/examples/cfg.rs
index f4848302..d49f54c7 100644
--- a/examples/cfg.rs
+++ b/examples/cfg.rs
@@ -20,9 +20,11 @@ mod app {
}
#[init(spawn = [foo])]
- fn init(cx: init::Context) {
+ fn init(cx: init::Context) -> init::LateResources {
cx.spawn.foo().unwrap();
cx.spawn.foo().unwrap();
+
+ init::LateResources {}
}
#[idle]
diff --git a/examples/destructure.rs b/examples/destructure.rs
index 45d73195..e7c53237 100644
--- a/examples/destructure.rs
+++ b/examples/destructure.rs
@@ -23,9 +23,11 @@ mod app {
}
#[init]
- fn init(_: init::Context) {
+ fn init(_: init::Context) -> init::LateResources {
rtic::pend(Interrupt::UART0);
rtic::pend(Interrupt::UART1);
+
+ init::LateResources {}
}
// Direct destructure
diff --git a/examples/generics.rs b/examples/generics.rs
index c65e6518..3107dd11 100644
--- a/examples/generics.rs
+++ b/examples/generics.rs
@@ -19,9 +19,11 @@ mod app {
}
#[init]
- fn init(_: init::Context) {
+ fn init(_: init::Context) -> init::LateResources {
rtic::pend(Interrupt::UART0);
rtic::pend(Interrupt::UART1);
+
+ init::LateResources {}
}
#[task(binds = UART0, resources = [shared])]
diff --git a/examples/hardware.rs b/examples/hardware.rs
index 831b029c..f6a2d375 100644
--- a/examples/hardware.rs
+++ b/examples/hardware.rs
@@ -12,12 +12,14 @@ use panic_semihosting as _;
#[rtic::app(device = lm3s6965)]
mod app {
#[init]
- fn init(_: init::Context) {
+ fn init(_: init::Context) -> init::LateResources {
// Pends the UART0 interrupt but its handler won't run until *after*
// `init` returns because interrupts are disabled
rtic::pend(Interrupt::UART0); // equivalent to NVIC::pend
hprintln!("init").unwrap();
+
+ init::LateResources {}
}
#[idle]
diff --git a/examples/idle.rs b/examples/idle.rs
index 0db05459..58c3c87d 100644
--- a/examples/idle.rs
+++ b/examples/idle.rs
@@ -11,8 +11,10 @@ use panic_semihosting as _;
#[rtic::app(device = lm3s6965)]
mod app {
#[init]
- fn init(_: init::Context) {
+ fn init(_: init::Context) -> init::LateResources {
hprintln!("init").unwrap();
+
+ init::LateResources {}
}
#[idle]
diff --git a/examples/init.rs b/examples/init.rs
index ea543338..6ac284a1 100644
--- a/examples/init.rs
+++ b/examples/init.rs
@@ -11,7 +11,7 @@ use panic_semihosting as _;
#[rtic::app(device = lm3s6965, peripherals = true)]
mod app {
#[init]
- fn init(cx: init::Context) {
+ fn init(cx: init::Context) -> init::LateResources {
static mut X: u32 = 0;
// Cortex-M peripherals
@@ -30,5 +30,7 @@ mod app {
hprintln!("init").unwrap();
debug::exit(debug::EXIT_SUCCESS);
+
+ init::LateResources {}
}
}
diff --git a/examples/lock.rs b/examples/lock.rs
index 6ce61dc6..669b1aed 100644
--- a/examples/lock.rs
+++ b/examples/lock.rs
@@ -18,8 +18,10 @@ mod app {
}
#[init]
- fn init(_: init::Context) {
+ fn init(_: init::Context) -> init::LateResources {
rtic::pend(Interrupt::GPIOA);
+
+ init::LateResources {}
}
// when omitted priority is assumed to be `1`
diff --git a/examples/message.rs b/examples/message.rs
index 3f14a5a4..f9736728 100644
--- a/examples/message.rs
+++ b/examples/message.rs
@@ -11,8 +11,10 @@ use panic_semihosting as _;
#[rtic::app(device = lm3s6965)]
mod app {
#[init(spawn = [foo])]
- fn init(c: init::Context) {
+ fn init(c: init::Context) -> init::LateResources {
c.spawn.foo(/* no message */).unwrap();
+
+ init::LateResources {}
}
#[task(spawn = [bar])]
diff --git a/examples/not-send.rs b/examples/not-send.rs
index 45f7e4e7..18071fc5 100644
--- a/examples/not-send.rs
+++ b/examples/not-send.rs
@@ -26,9 +26,11 @@ mod app {
}
#[init(spawn = [baz, quux])]
- fn init(c: init::Context) {
+ fn init(c: init::Context) -> init::LateResources {
c.spawn.baz().unwrap();
c.spawn.quux().unwrap();
+
+ init::LateResources {}
}
#[task(spawn = [bar])]
diff --git a/examples/not-sync.rs b/examples/not-sync.rs
index 75816424..75412e63 100644
--- a/examples/not-sync.rs
+++ b/examples/not-sync.rs
@@ -26,8 +26,10 @@ mod app {
}
#[init]
- fn init(_: init::Context) {
+ fn init(_: init::Context) -> init::LateResources {
debug::exit(debug::EXIT_SUCCESS);
+
+ init::LateResources {}
}
#[task(resources = [&shared])]
diff --git a/examples/periodic.rs b/examples/periodic.rs
index 2d4c73b5..d3aedd32 100644
--- a/examples/periodic.rs
+++ b/examples/periodic.rs
@@ -16,10 +16,12 @@ const PERIOD: u32 = 8_000_000;
mod app {
#[init(schedule = [foo])]
- fn init(cx: init::Context) {
+ fn init(cx: init::Context) -> init::LateResources {
// omitted: initialization of `CYCCNT`
cx.schedule.foo(cx.start + PERIOD.cycles()).unwrap();
+
+ init::LateResources {}
}
#[task(schedule = [foo])]
diff --git a/examples/peripherals-taken.rs b/examples/peripherals-taken.rs
index 10bc2603..09f92427 100644
--- a/examples/peripherals-taken.rs
+++ b/examples/peripherals-taken.rs
@@ -9,8 +9,10 @@ use panic_semihosting as _;
#[rtic::app(device = lm3s6965)]
mod app {
#[init]
- fn taskmain(_: taskmain::Context) {
+ fn init(_: init::Context) -> init::LateResources {
assert!(cortex_m::Peripherals::take().is_none());
debug::exit(debug::EXIT_SUCCESS);
+
+ init::LateResources {}
}
}
diff --git a/examples/pool.rs b/examples/pool.rs
index 27408d55..cdbabca7 100644
--- a/examples/pool.rs
+++ b/examples/pool.rs
@@ -25,13 +25,15 @@ mod app {
use super::P;
#[init]
- fn init(_: init::Context) {
+ fn init(_: init::Context) -> init::LateResources {
static mut MEMORY: [u8; 512] = [0; 512];
// Increase the capacity of the memory pool by ~4
P::grow(MEMORY);
rtic::pend(Interrupt::I2C0);
+
+ init::LateResources {}
}
#[task(binds = I2C0, priority = 2, spawn = [foo, bar])]
diff --git a/examples/preempt.rs b/examples/preempt.rs
index 02193011..f6fc4b05 100644
--- a/examples/preempt.rs
+++ b/examples/preempt.rs
@@ -11,8 +11,10 @@ use rtic::app;
#[app(device = lm3s6965)]
mod app {
#[init]
- fn init(_: init::Context) {
+ fn init(_: init::Context) -> init::LateResources {
rtic::pend(Interrupt::GPIOA);
+
+ init::LateResources {}
}
#[task(binds = GPIOA, priority = 1)]
diff --git a/examples/ramfunc.rs b/examples/ramfunc.rs
index 789d7871..5ff167a3 100644
--- a/examples/ramfunc.rs
+++ b/examples/ramfunc.rs
@@ -11,8 +11,10 @@ use panic_semihosting as _;
#[rtic::app(device = lm3s6965)]
mod app {
#[init(spawn = [bar])]
- fn init(c: init::Context) {
+ fn init(c: init::Context) -> init::LateResources {
c.spawn.bar().unwrap();
+
+ init::LateResources {}
}
#[inline(never)]
diff --git a/examples/resource-user-struct.rs b/examples/resource-user-struct.rs
index dbda9a3f..a5bd0ddf 100644
--- a/examples/resource-user-struct.rs
+++ b/examples/resource-user-struct.rs
@@ -26,9 +26,11 @@ mod app {
}
#[init]
- fn init(_: init::Context) {
+ fn init(_: init::Context) -> init::LateResources {
rtic::pend(Interrupt::UART0);
rtic::pend(Interrupt::UART1);
+
+ init::LateResources {}
}
// `shared` cannot be accessed from this context
diff --git a/examples/resource.rs b/examples/resource.rs
index 4cd0f4ca..273af26a 100644
--- a/examples/resource.rs
+++ b/examples/resource.rs
@@ -19,9 +19,11 @@ mod app {
}
#[init]
- fn init(_: init::Context) {
+ fn init(_: init::Context) -> init::LateResources {
rtic::pend(Interrupt::UART0);
rtic::pend(Interrupt::UART1);
+
+ init::LateResources {}
}
// `shared` cannot be accessed from this context
diff --git a/examples/schedule.rs b/examples/schedule.rs
index d5547b67..7e6adc1a 100644
--- a/examples/schedule.rs
+++ b/examples/schedule.rs
@@ -14,7 +14,7 @@ use rtic::cyccnt::{Instant, U32Ext as _};
#[rtic::app(device = lm3s6965, monotonic = rtic::cyccnt::CYCCNT)]
mod app {
#[init(schedule = [foo, bar])]
- fn init(mut cx: init::Context) {
+ fn init(mut cx: init::Context) -> init::LateResources {
// Initialize (enable) the monotonic timer (CYCCNT)
cx.core.DCB.enable_trace();
// required on Cortex-M7 devices that software lock the DWT (e.g. STM32F7)
@@ -32,6 +32,8 @@ mod app {
// Schedule `bar` to run 4e6 cycles in the future
cx.schedule.bar(now + 4_000_000.cycles()).unwrap();
+
+ init::LateResources {}
}
#[task]
diff --git a/examples/shared-with-init.rs b/examples/shared-with-init.rs
index 9f7e26aa..85c72761 100644
--- a/examples/shared-with-init.rs
+++ b/examples/shared-with-init.rs
@@ -23,12 +23,14 @@ mod app {
}
#[init(resources = [shared])]
- fn init(c: init::Context) {
+ fn init(c: init::Context) -> init::LateResources {
// this `message` will be sent to task `UART0`
let message = MustBeSend;
*c.resources.shared = Some(message);
rtic::pend(Interrupt::UART0);
+
+ init::LateResources {}
}
#[task(binds = UART0, resources = [shared])]
diff --git a/examples/t-binds.rs b/examples/t-binds.rs
index 7d7bd7d2..3ca4c66e 100644
--- a/examples/t-binds.rs
+++ b/examples/t-binds.rs
@@ -10,7 +10,9 @@ use panic_halt as _;
#[rtic::app(device = lm3s6965)]
mod app {
#[init]
- fn init(_: init::Context) {}
+ fn init(_: init::Context) -> init::LateResources {
+ init::LateResources {}
+ }
// Cortex-M exception
#[task(binds = SVCall)]
diff --git a/examples/t-cfg.rs b/examples/t-cfg.rs
index 3deb107c..3da20d4e 100644
--- a/examples/t-cfg.rs
+++ b/examples/t-cfg.rs
@@ -15,9 +15,11 @@ mod app {
}
#[init]
- fn init(_: init::Context) {
+ fn init(_: init::Context) -> init::LateResources {
#[cfg(never)]
static mut BAR: u32 = 0;
+
+ init::LateResources {}
}
#[idle]
diff --git a/examples/t-htask-main.rs b/examples/t-htask-main.rs
index 998252e1..1e38e317 100644
--- a/examples/t-htask-main.rs
+++ b/examples/t-htask-main.rs
@@ -9,8 +9,10 @@ use panic_semihosting as _;
#[rtic::app(device = lm3s6965)]
mod app {
#[init]
- fn init(_: init::Context) {
- rtic::pend(lm3s6965::Interrupt::UART0)
+ fn init(_: init::Context) -> init::LateResources {
+ rtic::pend(lm3s6965::Interrupt::UART0);
+
+ init::LateResources {}
}
#[task(binds = UART0)]
diff --git a/examples/t-idle-main.rs b/examples/t-idle-main.rs
index 03a52cb2..9078628e 100644
--- a/examples/t-idle-main.rs
+++ b/examples/t-idle-main.rs
@@ -9,7 +9,9 @@ use panic_semihosting as _;
#[rtic::app(device = lm3s6965)]
mod app {
#[init]
- fn init(_: init::Context) {}
+ fn init(_: init::Context) -> init::LateResources {
+ init::LateResources {}
+ }
#[idle]
fn taskmain(_: taskmain::Context) -> ! {
diff --git a/examples/t-init-main.rs b/examples/t-init-main.rs
index d0814877..7c23cc83 100644
--- a/examples/t-init-main.rs
+++ b/examples/t-init-main.rs
@@ -9,7 +9,9 @@ use panic_semihosting as _;
#[rtic::app(device = lm3s6965)]
mod app {
#[init]
- fn taskmain(_: taskmain::Context) {
+ fn init(_: init::Context) -> init::LateResources {
debug::exit(debug::EXIT_SUCCESS);
+
+ init::LateResources {}
}
}
diff --git a/examples/t-resource.rs b/examples/t-resource.rs
index 94b527fa..91950d3e 100644
--- a/examples/t-resource.rs
+++ b/examples/t-resource.rs
@@ -32,7 +32,7 @@ mod app {
}
#[init(resources = [o1, o4, o5, o6, s3])]
- fn init(c: init::Context) {
+ fn init(c: init::Context) -> init::LateResources {
// owned by `init` == `&'static mut`
let _: &'static mut u32 = c.resources.o1;
@@ -43,6 +43,8 @@ mod app {
let _: &mut u32 = c.resources.o4;
let _: &mut u32 = c.resources.o5;
let _: &mut u32 = c.resources.s3;
+
+ init::LateResources {}
}
#[idle(resources = [o2, &o4, s1, &s3])]
diff --git a/examples/t-schedule.rs b/examples/t-schedule.rs
index ef2eb080..d5a6d3ff 100644
--- a/examples/t-schedule.rs
+++ b/examples/t-schedule.rs
@@ -11,10 +11,12 @@ use rtic::cyccnt::{Instant, U32Ext as _};
#[rtic::app(device = lm3s6965, monotonic = rtic::cyccnt::CYCCNT)]
mod app {
#[init(schedule = [foo, bar, baz])]
- fn init(c: init::Context) {
+ fn init(c: init::Context) -> init::LateResources {
let _: Result<(), ()> = c.schedule.foo(c.start + 10.cycles());
let _: Result<(), u32> = c.schedule.bar(c.start + 20.cycles(), 0);
let _: Result<(), (u32, u32)> = c.schedule.baz(c.start + 30.cycles(), 0, 1);
+
+ init::LateResources {}
}
#[idle(schedule = [foo, bar, baz])]
diff --git a/examples/t-spawn.rs b/examples/t-spawn.rs
index 72143c5b..efb748bc 100644
--- a/examples/t-spawn.rs
+++ b/examples/t-spawn.rs
@@ -10,10 +10,12 @@ use panic_halt as _;
#[rtic::app(device = lm3s6965)]
mod app {
#[init(spawn = [foo, bar, baz])]
- fn init(c: init::Context) {
+ fn init(c: init::Context) -> init::LateResources {
let _: Result<(), ()> = c.spawn.foo();
let _: Result<(), u32> = c.spawn.bar(0);
let _: Result<(), (u32, u32)> = c.spawn.baz(0, 1);
+
+ init::LateResources {}
}
#[idle(spawn = [foo, bar, baz])]
diff --git a/examples/t-stask-main.rs b/examples/t-stask-main.rs
index 3e650f60..74335c18 100644
--- a/examples/t-stask-main.rs
+++ b/examples/t-stask-main.rs
@@ -9,8 +9,10 @@ use panic_semihosting as _;
#[rtic::app(device = lm3s6965)]
mod app {
#[init(spawn = [taskmain])]
- fn init(cx: init::Context) {
+ fn init(cx: init::Context) -> init::LateResources {
cx.spawn.taskmain().ok();
+
+ init::LateResources {}
}
#[task]
diff --git a/examples/task.rs b/examples/task.rs
index f510df74..80a9c431 100644
--- a/examples/task.rs
+++ b/examples/task.rs
@@ -11,8 +11,10 @@ use panic_semihosting as _;
#[rtic::app(device = lm3s6965)]
mod app {
#[init(spawn = [foo])]
- fn init(c: init::Context) {
+ fn init(c: init::Context) -> init::LateResources {
c.spawn.foo().unwrap();
+
+ init::LateResources {}
}
#[task(spawn = [bar, baz])]
diff --git a/examples/types.rs b/examples/types.rs
index cd7e8a2f..251d004c 100644
--- a/examples/types.rs
+++ b/examples/types.rs
@@ -18,7 +18,7 @@ mod app {
}
#[init(schedule = [foo], spawn = [foo])]
- fn init(cx: init::Context) {
+ fn init(cx: init::Context) -> init::LateResources {
let _: cyccnt::Instant = cx.start;
let _: rtic::Peripherals = cx.core;
let _: lm3s6965::Peripherals = cx.device;
@@ -26,6 +26,8 @@ mod app {
let _: init::Spawn = cx.spawn;
debug::exit(debug::EXIT_SUCCESS);
+
+ init::LateResources {}
}
#[idle(schedule = [foo], spawn = [foo])]