rtic/rtic-macros/ui/extern-interrupt-used.rs

17 lines
281 B
Rust
Raw Normal View History

#![no_main]
2023-01-03 07:51:35 +01:00
#[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) {}
}