diff options
Diffstat (limited to 'examples/cfg.rs')
-rw-r--r-- | examples/cfg.rs | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/examples/cfg.rs b/examples/cfg.rs index 8eeeb2a9..d49f54c7 100644 --- a/examples/cfg.rs +++ b/examples/cfg.rs @@ -11,7 +11,8 @@ use cortex_m_semihosting::hprintln; use panic_semihosting as _; #[rtic::app(device = lm3s6965)] -const APP: () = { +mod app { + #[resources] struct Resources { #[cfg(debug_assertions)] // <- `true` when using the `dev` profile #[init(0)] @@ -19,9 +20,11 @@ const 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] @@ -66,4 +69,4 @@ const APP: () = { fn SSI0(); fn QEI0(); } -}; +} |