diff options
| author | Emil Fresk <emil.fresk@gmail.com> | 2020-10-01 20:14:07 +0200 |
|---|---|---|
| committer | Emil Fresk <emil.fresk@gmail.com> | 2020-10-01 20:14:07 +0200 |
| commit | 9d2598dc071882a94b813ab1d9ddf49092546257 (patch) | |
| tree | d2f80d17a0a23c6c1b9f1f2d320617bc0406407a /ui/single/task-priority-too-high.rs | |
| parent | e7f0d9c3e3fad77dace2ce63af02559fda46cb73 (diff) | |
Fixing test errors
Diffstat (limited to 'ui/single/task-priority-too-high.rs')
| -rw-r--r-- | ui/single/task-priority-too-high.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ui/single/task-priority-too-high.rs b/ui/single/task-priority-too-high.rs index 539c3f5..62e531d 100644 --- a/ui/single/task-priority-too-high.rs +++ b/ui/single/task-priority-too-high.rs @@ -5,7 +5,9 @@ use rtic::app; #[rtic::app(device = lm3s6965)] const APP: () = { #[init] - fn init(_: init::Context) {} + fn init(_: init::Context) -> init::LateResources { + init::LateResources {} + } #[task(binds = GPIOA, priority = 1)] fn gpioa(_: gpioa::Context) {} |
