mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-24 04:32:52 +01:00
4c2c05a801
rtic-syntax is now part of RTIC repository
16 lines
336 B
Rust
16 lines
336 B
Rust
#![no_main]
|
|
|
|
#[rtic_macros::mock_app(parse_extern_interrupt, parse_binds, device = mock, dispatchers = [EXTI0])]
|
|
mod app {
|
|
#[shared]
|
|
struct Shared {}
|
|
|
|
#[local]
|
|
struct Local {}
|
|
|
|
#[init]
|
|
fn init(_: init::Context) -> (Shared, Local, init::Monotonics) {}
|
|
|
|
#[task(binds = EXTI0)]
|
|
fn foo(_: foo::Context) {}
|
|
}
|