diff options
author | 2021-07-07 22:50:59 +0200 | |
---|---|---|
committer | 2021-07-07 23:07:09 +0200 | |
commit | 98d2af9d73da56910c8bb6cb662fbc4d609a704a (patch) | |
tree | 46914250a980b9164b2d20cbeb08e126a86cf7ea /examples/type-usage.rs | |
parent | 633012190baa0801efc7e3ab2f699778c5038d54 (diff) | |
download | rtic-98d2af9d73da56910c8bb6cb662fbc4d609a704a.tar.gz rtic-98d2af9d73da56910c8bb6cb662fbc4d609a704a.tar.zst rtic-98d2af9d73da56910c8bb6cb662fbc4d609a704a.zip |
Fixing tests
Diffstat (limited to 'examples/type-usage.rs')
-rw-r--r-- | examples/type-usage.rs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/examples/type-usage.rs b/examples/type-usage.rs index 9bb7eb8d..e5a088f0 100644 --- a/examples/type-usage.rs +++ b/examples/type-usage.rs @@ -10,6 +10,17 @@ use rtic::app; mod app { type Test = u32; + #[shared] + struct Shared {} + + #[local] + struct Local {} + + #[init] + fn init(_: init::Context) -> (Shared, Local, init::Monotonics) { + (Shared {}, Local {}, init::Monotonics {}) + } + #[task] fn t1(_: t1::Context, _val: Test) {} } |