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 /examples/esp32c3/Cargo.toml | |
| parent | 6e68a5e6157204df4c79b0ea14a248cc8182863a (diff) | |
Add SYSTIMER based ESP32-C3 monotonic (#972)
* add esp32c3 monotonic
* fix tests
Diffstat (limited to 'examples/esp32c3/Cargo.toml')
| -rw-r--r-- | examples/esp32c3/Cargo.toml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/esp32c3/Cargo.toml b/examples/esp32c3/Cargo.toml index fa2a4e0..adb0ece 100644 --- a/examples/esp32c3/Cargo.toml +++ b/examples/esp32c3/Cargo.toml @@ -8,6 +8,7 @@ license = "MIT OR Apache-2.0" [dependencies] rtic = {path = "../../rtic/"} +rtic-monotonics = {path = "../../rtic-monotonics/"} esp-hal = { version = "0.16.1", features = ["esp32c3", "direct-vectoring", "interrupt-preemption"] } esp-backtrace = { version = "0.11.0", features = [ "esp32c3", @@ -21,4 +22,4 @@ esp-println = { version = "0.9.0", features = ["esp32c3", "uart"] } [features] test-critical-section = [] -riscv-esp32c3-backend = ["rtic/riscv-esp32c3-backend"] +riscv-esp32c3-backend = ["rtic/riscv-esp32c3-backend", "rtic-monotonics/esp32c3-systimer"] |
