diff options
| author | Nils Fitinghoff <nils.fitinghoff@mobilaris.se> | 2023-08-24 16:29:20 +0200 |
|---|---|---|
| committer | Emil Fresk <emil.fresk@gmail.com> | 2023-08-25 15:16:18 +0000 |
| commit | 4ea73021d62bda15ce9a7b36123e4a237c8e4255 (patch) | |
| tree | 69249b8e623460da9eddfad25ce50271476c92e5 /xtask/src/argument_parsing.rs | |
| parent | 609f14b1e4f169eb639025a5edefbb64afebf816 (diff) | |
rtic-monotonics: Add 64-bit SysTick monotonic
Counting at 1 kHz, 32 bits for counting ticks is not enough to ensure
monotonicity for more than 50 days. Add a feature to change the backing
storage to 64 bits.
Diffstat (limited to 'xtask/src/argument_parsing.rs')
| -rw-r--r-- | xtask/src/argument_parsing.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/xtask/src/argument_parsing.rs b/xtask/src/argument_parsing.rs index 2e1eef4..88ac1e5 100644 --- a/xtask/src/argument_parsing.rs +++ b/xtask/src/argument_parsing.rs @@ -67,6 +67,9 @@ impl Package { "cortex-m-systick,embedded-hal-async", "cortex-m-systick,systick-100hz,embedded-hal-async", "cortex-m-systick,systick-10khz,embedded-hal-async", + "cortex-m-systick,embedded-hal-async,systick-64bit", + "cortex-m-systick,systick-100hz,embedded-hal-async,systick-64bit", + "cortex-m-systick,systick-10khz,embedded-hal-async,systick-64bit", "rp2040,embedded-hal-async", "nrf52810,embedded-hal-async", "nrf52811,embedded-hal-async", |
