diff options
| author | Emil Fresk <emil.fresk@gmail.com> | 2023-07-25 10:01:51 +0200 |
|---|---|---|
| committer | Emil Fresk <emil.fresk@gmail.com> | 2023-07-25 08:16:13 +0000 |
| commit | 0228350ef4758c45623e325c41116720bbc2b30a (patch) | |
| tree | 31ef9889d6332e64ec624c4047af284c82ac7a45 /rtic-monotonics/src | |
| parent | 1967058784ae674b69302500f4b95c1fc4ab4056 (diff) | |
Fixed new TAIT requirement and release v2.0.1 of RTIC
Diffstat (limited to 'rtic-monotonics/src')
| -rw-r--r-- | rtic-monotonics/src/rp2040.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rtic-monotonics/src/rp2040.rs b/rtic-monotonics/src/rp2040.rs index a9fd3f3..a6e0af6 100644 --- a/rtic-monotonics/src/rp2040.rs +++ b/rtic-monotonics/src/rp2040.rs @@ -38,7 +38,7 @@ impl Timer { /// Start a `Monotonic` based on RP2040's Timer. pub fn start( timer: TIMER, - resets: &mut RESETS, + resets: &RESETS, _interrupt_token: impl crate::InterruptToken<Self>, ) { resets.reset.modify(|_, w| w.timer().clear_bit()); |
