diff options
| author | Emil Fresk <emil.fresk@gmail.com> | 2021-02-23 19:29:15 +0100 |
|---|---|---|
| committer | Emil Fresk <emil.fresk@gmail.com> | 2021-02-23 19:29:15 +0100 |
| commit | 210197d07955e760c031e05d1cc79689290335dc (patch) | |
| tree | ada0510f53d595f32451efa5b93d8b1068c08401 /ui/single/task-priority-too-high.rs | |
| parent | 26870ae12ede1a70ca5685a7c0e0113c6bed58dd (diff) | |
Remove flags, updates UI tests
Diffstat (limited to 'ui/single/task-priority-too-high.rs')
| -rw-r--r-- | ui/single/task-priority-too-high.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/single/task-priority-too-high.rs b/ui/single/task-priority-too-high.rs index caa7b8e..b1cbfa9 100644 --- a/ui/single/task-priority-too-high.rs +++ b/ui/single/task-priority-too-high.rs @@ -3,8 +3,8 @@ #[rtic::app(device = lm3s6965)] mod app { #[init] - fn init(_: init::Context) -> init::LateResources { - init::LateResources {} + fn init(_: init::Context) -> (init::LateResources, init::Monotonics) { + (init::LateResources {}, init::Monotonics()) } #[task(binds = GPIOA, priority = 1)] |
