aboutsummaryrefslogtreecommitdiff
path: root/rtic-time/src/monotonic.rs
diff options
context:
space:
mode:
authorEmil Fresk <emil.fresk@gmail.com>2023-04-01 20:48:23 +0200
committerEmil Fresk <emil.fresk@gmail.com>2023-04-02 15:19:07 +0200
commita2f153249f926876e7169016f3dc8e861a9ef065 (patch)
tree1f2ccf36f5b8fc878792704d162924337f54eaf4 /rtic-time/src/monotonic.rs
parent064cf19265f72d7f01e0847c545e6250391a2172 (diff)
Added nRF monotonics
Diffstat (limited to 'rtic-time/src/monotonic.rs')
-rw-r--r--rtic-time/src/monotonic.rs7
1 files changed, 7 insertions, 0 deletions
diff --git a/rtic-time/src/monotonic.rs b/rtic-time/src/monotonic.rs
index 9b3742f..513cc07 100644
--- a/rtic-time/src/monotonic.rs
+++ b/rtic-time/src/monotonic.rs
@@ -33,6 +33,13 @@ pub trait Monotonic {
/// queue in RTIC checks this.
fn set_compare(instant: Self::Instant);
+ /// Override for the dequeue check, override with timers that have bugs.
+ ///
+ /// E.g. nRF52 RTCs needs to be dequeued if the time is within 4 ticks.
+ fn should_dequeue_check(release_at: Self::Instant) -> bool {
+ <Self as Monotonic>::now() >= release_at
+ }
+
/// Clear the compare interrupt flag.
fn clear_compare_flag();