diff options
| author | Emil Fresk <emil.fresk@gmail.com> | 2023-04-01 20:48:23 +0200 |
|---|---|---|
| committer | Emil Fresk <emil.fresk@gmail.com> | 2023-04-02 15:19:07 +0200 |
| commit | a2f153249f926876e7169016f3dc8e861a9ef065 (patch) | |
| tree | 1f2ccf36f5b8fc878792704d162924337f54eaf4 /rtic-monotonics/src/lib.rs | |
| parent | 064cf19265f72d7f01e0847c545e6250391a2172 (diff) | |
Added nRF monotonics
Diffstat (limited to 'rtic-monotonics/src/lib.rs')
| -rw-r--r-- | rtic-monotonics/src/lib.rs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/rtic-monotonics/src/lib.rs b/rtic-monotonics/src/lib.rs index 6143fd0..fab0b2d 100644 --- a/rtic-monotonics/src/lib.rs +++ b/rtic-monotonics/src/lib.rs @@ -14,6 +14,18 @@ pub mod systick; #[cfg(feature = "rp2040")] pub mod rp2040; +#[cfg(any( + feature = "nrf52810", + feature = "nrf52811", + feature = "nrf52832", + feature = "nrf52833", + feature = "nrf52840", + feature = "nrf5340-app", + feature = "nrf5340-net", + feature = "nrf9160", +))] +pub mod nrf; + /// This marker is implemented on an interrupt token to enforce that the right tokens /// are given to the correct monotonic implementation. /// |
