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.
This commit is contained in:
Nils Fitinghoff 2023-08-24 16:29:20 +02:00 committed by Emil Fresk
parent 609f14b1e4
commit 4ea73021d6
4 changed files with 36 additions and 7 deletions

View file

@ -7,6 +7,10 @@ For each category, *Added*, *Changed*, *Fixed* add new entries at the top!
## Unreleased
### Added
- Feature `systick-64bit` to get 64-bit backed `TimerInstantU64` instead of `TimerInstantU32` from the SysTick-based monotonic timer
## v1.0.1 - 2023-08-20
### Added