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/Cargo.toml | |
| parent | d248dddf7ba93fde5b1212825a94ec856b9ad1d3 (diff) | |
RP2040 monotonic, rename systick monotonic to not have double name
Diffstat (limited to 'rtic-monotonics/Cargo.toml')
| -rw-r--r-- | rtic-monotonics/Cargo.toml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/rtic-monotonics/Cargo.toml b/rtic-monotonics/Cargo.toml index 4014fe7..2e75bdb 100644 --- a/rtic-monotonics/Cargo.toml +++ b/rtic-monotonics/Cargo.toml @@ -23,7 +23,12 @@ fugit = { version = "0.3.6", features = ["defmt"] } rtic-time = { version = "1.0.0-alpha.0", path = "../rtic-time" } atomic-polyfill = "1" cfg-if = "1.0.0" +rp2040-pac = { version = ">=0.2.0,<0.5", optional = true } [features] +default = [] + systick_100hz = [] systick_10khz = [] + +rp2040 = ["dep:rp2040-pac"] |
