diff options
| author | onsdagens <112828711+onsdagens@users.noreply.github.com> | 2024-09-29 06:21:14 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-09-29 04:21:14 +0000 |
| commit | 805ea267a8515b7ee70125f444763f4aaa95c454 (patch) | |
| tree | b5cb20e1db8aca4ffa4ae45b8a81cf7da1a28931 /rtic-monotonics/src/lib.rs | |
| parent | 6e68a5e6157204df4c79b0ea14a248cc8182863a (diff) | |
Add SYSTIMER based ESP32-C3 monotonic (#972)
* add esp32c3 monotonic
* fix tests
Diffstat (limited to 'rtic-monotonics/src/lib.rs')
| -rw-r--r-- | rtic-monotonics/src/lib.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/rtic-monotonics/src/lib.rs b/rtic-monotonics/src/lib.rs index 757e901..9fe0bbf 100644 --- a/rtic-monotonics/src/lib.rs +++ b/rtic-monotonics/src/lib.rs @@ -39,6 +39,9 @@ pub use rtic_time::{ TimeoutError, }; +#[cfg(feature = "esp32c3-systimer")] +pub mod esp32c3; + #[cfg(feature = "cortex-m-systick")] pub mod systick; |
