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

#[rtic_macros::mock_app(device = mock)]
mod app {
    #[task(binds = SysTick)]
    fn foo(_: foo::Context) {}

    #[task]
    fn foo(_: foo::Context) {}
}