diff options
| author | Robin Mueller <31589589+robamu@users.noreply.github.com> | 2024-09-18 15:15:17 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-09-18 13:15:17 +0000 |
| commit | 056616c772ea8b77aed65684384f26563f9095c9 (patch) | |
| tree | cec20f09b10e8519cd6613448d6a0ffb7c641211 | |
| parent | d81c3758d5633c22342cb60069243243f9d38df5 (diff) | |
Fix for system_monotonic macro with 1 argument (#978)
| -rw-r--r-- | rtic-monotonics/src/systick.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rtic-monotonics/src/systick.rs b/rtic-monotonics/src/systick.rs index 288c7dc..48888be 100644 --- a/rtic-monotonics/src/systick.rs +++ b/rtic-monotonics/src/systick.rs @@ -144,7 +144,7 @@ impl TimerQueueBackend for SystickBackend { #[macro_export] macro_rules! systick_monotonic { ($name:ident) => { - $crate::systick_monotonic($name, 1_000); + $crate::systick_monotonic!($name, 1_000); }; ($name:ident, $tick_rate_hz:expr) => { /// A `Monotonic` based on SysTick. |
