mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-23 12:12:50 +01:00
19 lines
304 B
Rust
19 lines
304 B
Rust
#![no_main]
|
|
|
|
#[rtic_macros::mock_app(device = mock)]
|
|
mod app {
|
|
#[shared]
|
|
struct Shared {}
|
|
|
|
#[local]
|
|
struct Local {}
|
|
|
|
#[init]
|
|
fn init(_: init::Context) -> (Shared, Local) {}
|
|
|
|
#[idle]
|
|
fn idle(_: idle::Context) -> ! {}
|
|
|
|
#[task]
|
|
async fn task1(_: task1::Context) {}
|
|
}
|