rtic/rtic-macros/ui/task-zero-prio.rs

20 lines
308 B
Rust
Raw Permalink Normal View History

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