Skip to content

Commit

Permalink
Fix for system_monotonic macro with 1 argument (#978)
Browse files Browse the repository at this point in the history
  • Loading branch information
robamu authored Sep 18, 2024
1 parent d81c375 commit 056616c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rtic-monotonics/src/systick.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 056616c

Please sign in to comment.