mirror of
https://github.com/rtic-rs/rtic.git
synced 2025-01-17 14:49:04 +01:00
rtic-monotonics: rp2040 extra parenthesis (#1010)
This commit is contained in:
parent
6f6a56387c
commit
1a8b5f27a0
1 changed files with 1 additions and 1 deletions
|
@ -81,7 +81,7 @@ impl TimerQueueBackend for TimerBackend {
|
|||
let low = timer.timerawl().read().bits();
|
||||
let hi1 = timer.timerawh().read().bits();
|
||||
if hi0 == hi1 {
|
||||
break ((u64::from(hi0) << 32) | u64::from(low));
|
||||
break (u64::from(hi0) << 32) | u64::from(low);
|
||||
}
|
||||
hi0 = hi1;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue