mirror of
https://github.com/rtic-rs/rtic.git
synced 2025-12-18 05:45:19 +01:00
Fix for default monotonic, monotonics::now() now properly works
This commit is contained in:
parent
b8b13573ae
commit
fbcf2aabb0
2 changed files with 9 additions and 1 deletions
|
|
@ -40,7 +40,7 @@ mod app {
|
|||
let _: Result<(), ()> = handle.unwrap().cancel();
|
||||
|
||||
// Using default
|
||||
let _: Result<foo::SpawnHandle, ()> = foo::spawn_at(monotonics::MyMono::now());
|
||||
let _: Result<foo::SpawnHandle, ()> = foo::spawn_at(monotonics::now());
|
||||
let handle: Result<foo::SpawnHandle, ()> = foo::spawn_after(Seconds(1_u32));
|
||||
let _: Result<foo::SpawnHandle, ()> = handle.unwrap().reschedule_after(Seconds(1_u32));
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue