aboutsummaryrefslogtreecommitdiff
path: root/macros/ui/task-divergent.rs
blob: 5a471f3cca93115f2d38f6fb5224ac51414703f4 (plain) (blame)
1
2
3
4
5
6
7
8
9
#![no_main]

#[rtic_macros::mock_app(device = mock)]
mod app {
    #[task]
    fn foo(_: foo::Context) -> ! {
        loop {}
    }
}