mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-24 12:42:52 +01:00
22 lines
358 B
Rust
22 lines
358 B
Rust
|
#![no_main]
|
||
|
|
||
|
#[rtic_macros::mock_app(device = mock)]
|
||
|
mod app {
|
||
|
#[shared]
|
||
|
struct Shared {}
|
||
|
|
||
|
#[local]
|
||
|
struct Local {
|
||
|
a: u32,
|
||
|
}
|
||
|
|
||
|
fn bar(_: bar::Context) {}
|
||
|
|
||
|
#[task(local = [a: u8 = 3])]
|
||
|
fn bar(_: bar::Context) {}
|
||
|
|
||
|
#[init(local = [a: u16 = 2])]
|
||
|
fn init(_: init::Context) -> (Shared, Local, init::Monotonics) {}
|
||
|
}
|
||
|
|