From 339bf4abcd2012ff3523883085b35fb7c8a739bd Mon Sep 17 00:00:00 2001 From: Jorge Aparicio Date: Fri, 10 Jul 2020 11:34:21 +0200 Subject: [PATCH] rtic-hello: change name of idle function to make RA's "Run" button appear --- advanced/firmware/src/bin/rtic-hello.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/advanced/firmware/src/bin/rtic-hello.rs b/advanced/firmware/src/bin/rtic-hello.rs index 9f823e9..055f490 100644 --- a/advanced/firmware/src/bin/rtic-hello.rs +++ b/advanced/firmware/src/bin/rtic-hello.rs @@ -14,7 +14,7 @@ const APP: () = { } #[idle] - fn idle(_cx: idle::Context) -> ! { + fn main(_cx: main::Context) -> ! { log::info!("world!"); loop {