diff options
Diffstat (limited to 'macros/ui/local-pub.rs')
-rw-r--r-- | macros/ui/local-pub.rs | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/macros/ui/local-pub.rs b/macros/ui/local-pub.rs deleted file mode 100644 index 42da4f47..00000000 --- a/macros/ui/local-pub.rs +++ /dev/null @@ -1,15 +0,0 @@ -#![no_main] - -#[rtic_macros::mock_app(device = mock)] -mod app { - #[shared] - struct Shared {} - - #[local] - struct Local { - pub x: u32, - } - - #[init] - fn init(_: init::Context) -> (Shared, Local) {} -} |