diff options
| author | Emil Fresk <emil.fresk@gmail.com> | 2023-02-10 07:52:50 +0100 |
|---|---|---|
| committer | Henrik Tjäder <henrik@tjaders.com> | 2023-03-01 00:35:19 +0100 |
| commit | 8963e0e27ae57f7a8c3a666fe9e5a993cdd09275 (patch) | |
| tree | b3ecabb26216db498739ace4dbdc880dbea21416 /rtic-monotonics/src/lib.rs | |
| parent | d248dddf7ba93fde5b1212825a94ec856b9ad1d3 (diff) | |
RP2040 monotonic, rename systick monotonic to not have double name
Diffstat (limited to 'rtic-monotonics/src/lib.rs')
| -rw-r--r-- | rtic-monotonics/src/lib.rs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/rtic-monotonics/src/lib.rs b/rtic-monotonics/src/lib.rs index 1e23088..fb5dc8a 100644 --- a/rtic-monotonics/src/lib.rs +++ b/rtic-monotonics/src/lib.rs @@ -9,4 +9,7 @@ pub use rtic_time::{Monotonic, TimeoutError, TimerQueue}; -pub mod systick_monotonic; +pub mod systick; + +#[cfg(feature = "rp2040")] +pub mod rp2040; |
