rtic/rtic-macros/ui/extern-interrupt-used.rs
2023-03-01 00:35:13 +01:00

16 lines
281 B
Rust

#![no_main]
#[rtic_macros::mock_app(device = mock, dispatchers = [EXTI0])]
mod app {
#[shared]
struct Shared {}
#[local]
struct Local {}
#[init]
fn init(_: init::Context) -> (Shared, Local) {}
#[task(binds = EXTI0)]
fn foo(_: foo::Context) {}
}