mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-23 20:22:51 +01:00
Monotonics migration example: fix Systick start function
This commit is contained in:
parent
1e4977152a
commit
050c2cfc34
1 changed files with 2 additions and 2 deletions
|
@ -123,7 +123,7 @@ _Note_: This diff may not be 100% accurate, but it displays the important change
|
|||
|
||||
- let mono = Systick::new(cx.core.SYST, 36_000_000);
|
||||
+ let mono_token = rtic_monotonics::create_systick_token!();
|
||||
+ let mono = Systick::new(cx.core.SYST, 36_000_000, mono_token);
|
||||
+ let mono = Systick::start(cx.core.SYST, 36_000_000, mono_token);
|
||||
|
||||
let _clocks = rcc
|
||||
.cfgr
|
||||
|
@ -166,4 +166,4 @@ _Note_: This diff may not be 100% accurate, but it displays the important change
|
|||
+ }
|
||||
+ }
|
||||
}
|
||||
```
|
||||
```
|
||||
|
|
Loading…
Reference in a new issue