mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-25 21:19:35 +01:00
fix pool example
This commit is contained in:
parent
e4319de3d5
commit
5e92715d8c
1 changed files with 3 additions and 3 deletions
|
@ -42,14 +42,14 @@ mod app {
|
|||
|
||||
#[task(binds = I2C0, priority = 2)]
|
||||
fn i2c0(_: i2c0::Context) {
|
||||
// claim a memory block, leave it uninitialized and ..
|
||||
let x = P::alloc().unwrap().freeze();
|
||||
// claim a memory block, initialize it and ..
|
||||
let x = P::alloc().unwrap().init([0u8; 128]);
|
||||
|
||||
// .. send it to the `foo` task
|
||||
foo::spawn(x).ok().unwrap();
|
||||
|
||||
// send another block to the task `bar`
|
||||
bar::spawn(P::alloc().unwrap().freeze()).ok().unwrap();
|
||||
bar::spawn(P::alloc().unwrap().init([0u8; 128])).ok().unwrap();
|
||||
}
|
||||
|
||||
#[task]
|
||||
|
|
Loading…
Reference in a new issue