diff options
author | 2020-10-05 18:25:15 +0200 | |
---|---|---|
committer | 2020-10-05 18:25:15 +0200 | |
commit | eec0908024d9b4127ed496b4781adc08000cc2c2 (patch) | |
tree | f128b3d91ea4ac0f171ab334d4517552a6803d01 /examples/t-binds.rs | |
parent | 9d2598dc071882a94b813ab1d9ddf49092546257 (diff) | |
parent | f493f21359ccb3ab4643d9470f3581532f47593a (diff) | |
download | rtic-eec0908024d9b4127ed496b4781adc08000cc2c2.tar.gz rtic-eec0908024d9b4127ed496b4781adc08000cc2c2.tar.zst rtic-eec0908024d9b4127ed496b4781adc08000cc2c2.zip |
Merge branch 'master' into always_late_resources
Diffstat (limited to 'examples/t-binds.rs')
-rw-r--r-- | examples/t-binds.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/t-binds.rs b/examples/t-binds.rs index edf0fc69..3ca4c66e 100644 --- a/examples/t-binds.rs +++ b/examples/t-binds.rs @@ -8,7 +8,7 @@ use panic_halt as _; #[rtic::app(device = lm3s6965)] -const APP: () = { +mod app { #[init] fn init(_: init::Context) -> init::LateResources { init::LateResources {} @@ -25,7 +25,7 @@ const APP: () = { fn bar(c: bar::Context) { bar_trampoline(c) } -}; +} #[allow(dead_code)] fn foo_trampoline(_: foo::Context) {} |