change tasks! syntax to resemble struct initialization

This commit is contained in:
Jorge Aparicio 2017-04-25 09:29:29 -05:00
parent 62356da0be
commit 39c111a59a
7 changed files with 40 additions and 8 deletions

View file

@ -9,7 +9,11 @@ use rtfm::{C1, P0, P1};
use device::interrupt::Exti0;
tasks!(device, {
j1: (Exti0, P1),
j1: Task {
interrupt: Exti0,
priority: P1,
enabled: true,
},
});
// WRONG. `init` must have signature `fn(P0, &C16)`