diff options
| author | Foo <34515228+fooooooooooooooo@users.noreply.github.com> | 2024-05-27 04:26:09 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-05-27 11:26:09 +0000 |
| commit | 6865b696161d32cd47e1ccbfac942c38385d6dfd (patch) | |
| tree | d7055f9dc0a4a4c26d0fb4f8a2b955f9ca9f5dd6 /rtic-monotonics/src/nrf/rtc.rs | |
| parent | 2efdef6029fc3b38974cea1664aba321f6c63ec4 (diff) | |
add support for nrf52805 (#941)
Diffstat (limited to 'rtic-monotonics/src/nrf/rtc.rs')
| -rw-r--r-- | rtic-monotonics/src/nrf/rtc.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/rtic-monotonics/src/nrf/rtc.rs b/rtic-monotonics/src/nrf/rtc.rs index 39b26c4..5b9a90b 100644 --- a/rtic-monotonics/src/nrf/rtc.rs +++ b/rtic-monotonics/src/nrf/rtc.rs @@ -33,6 +33,9 @@ pub mod prelude { pub use fugit::{self, ExtU64, ExtU64Ceil}; } +#[cfg(feature = "nrf52805")] +#[doc(hidden)] +pub use nrf52805_pac::{self as pac, RTC0, RTC1}; #[cfg(feature = "nrf52810")] #[doc(hidden)] pub use nrf52810_pac::{self as pac, RTC0, RTC1}; |
