diff options
Diffstat (limited to 'examples/cfg.rs')
-rw-r--r-- | examples/cfg.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/cfg.rs b/examples/cfg.rs index d3f2cea1..43c2593c 100644 --- a/examples/cfg.rs +++ b/examples/cfg.rs @@ -21,11 +21,11 @@ mod app { } #[init] - fn init(_: init::Context) -> init::LateResources { + fn init(_: init::Context) -> (init::LateResources, init::Monotonics) { foo::spawn().unwrap(); foo::spawn().unwrap(); - init::LateResources {} + (init::LateResources {}, init::Monotonics()) } #[idle] |