mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-23 20:22:51 +01:00
update examples
This commit is contained in:
parent
f3b397f460
commit
05feb7b018
2 changed files with 2 additions and 16 deletions
|
@ -25,9 +25,6 @@ app! {
|
|||
},
|
||||
|
||||
idle: {
|
||||
locals: {
|
||||
static COUNTER: u32 = 0;
|
||||
},
|
||||
path: idle_, // this is a path to the "idle" function
|
||||
resources: [OWNED, SHARED],
|
||||
},
|
||||
|
@ -48,10 +45,8 @@ app! {
|
|||
|
||||
fn init_(_p: init::Peripherals, _r: init::Resources) {}
|
||||
|
||||
fn idle_(t: &mut Threshold, l: &mut idle::Locals, mut r: idle::Resources) -> ! {
|
||||
fn idle_(t: &mut Threshold, mut r: idle::Resources) -> ! {
|
||||
loop {
|
||||
*l.COUNTER += 1;
|
||||
|
||||
**r.OWNED != **r.OWNED;
|
||||
|
||||
if **r.OWNED {
|
||||
|
|
|
@ -25,9 +25,6 @@ app! {
|
|||
},
|
||||
|
||||
idle: {
|
||||
locals: {
|
||||
static COUNTER: u32 = 0;
|
||||
},
|
||||
path: main::idle,
|
||||
resources: [OWNED, SHARED],
|
||||
},
|
||||
|
@ -51,14 +48,8 @@ mod main {
|
|||
|
||||
pub fn init(_p: ::init::Peripherals, _r: ::init::Resources) {}
|
||||
|
||||
pub fn idle(
|
||||
t: &mut Threshold,
|
||||
l: &mut ::idle::Locals,
|
||||
mut r: ::idle::Resources,
|
||||
) -> ! {
|
||||
pub fn idle(t: &mut Threshold, mut r: ::idle::Resources) -> ! {
|
||||
loop {
|
||||
*l.COUNTER += 1;
|
||||
|
||||
**r.OWNED != **r.OWNED;
|
||||
|
||||
if **r.OWNED {
|
||||
|
|
Loading…
Reference in a new issue