1
0
Fork 0
mirror of https://github.com/rtic-rs/rtic.git synced 2025-02-23 08:48:38 +01:00
rtic/rtic-macros/ui/init-output.rs

10 lines
132 B
Rust
Raw Normal View History

#![no_main]
#[rtic_macros::mock_app(device = mock)]
mod app {
#[init]
fn init(_: init::Context) -> u32 {
0
}
}