diff options
| author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2021-12-26 09:46:46 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-12-26 09:46:46 +0000 |
| commit | 3a1d42b614309759d25fb2bf8c628a1c26159c83 (patch) | |
| tree | ef39a3851c1e7598ed7fdd55786b46637db7688f /book/en/src | |
| parent | d8746d669b4be200237e635f2e203e27368819f7 (diff) | |
| parent | 68fb811a11de9dc56ee79945106ce047392445d2 (diff) | |
Merge #571
571: Added nRF52 RTC based monotonic to the book r=AfoHT a=korken89
Co-authored-by: Emil Fresk <emil.fresk@gmail.com>
Diffstat (limited to 'book/en/src')
| -rw-r--r-- | book/en/src/by-example/tips_monotonic_impl.md | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/book/en/src/by-example/tips_monotonic_impl.md b/book/en/src/by-example/tips_monotonic_impl.md index 24df771..38f3e92 100644 --- a/book/en/src/by-example/tips_monotonic_impl.md +++ b/book/en/src/by-example/tips_monotonic_impl.md @@ -18,7 +18,8 @@ The trait documents the requirements for each method, and for inspiration here is a list of `Monotonic` implementations: - [`STM32F411 series`], implemented for the 32-bit timers -- [`Nordic nRF52 series`], implemented for the 32-bit timers +- [`Nordic nRF52 series Timer`], implemented for the 32-bit timers +- [`Nordic nRF52 series RTC`], implemented for the RTCs - [`Systick based`], runs at a fixed rate - some overhead but simple - [`DWT and Systick based`], a more efficient `Systick` based implementation, but requires `DWT` @@ -28,6 +29,7 @@ If you know of more implementations feel free to add them to this list. [`fugit`]: https://docs.rs/fugit/ [`embedded_time`]: https://docs.rs/embedded_time/ [`STM32F411 series`]: https://github.com/kalkyl/f411-rtic/blob/main/src/bin/mono.rs -[`Nordic nRF52 series`]: https://github.com/kalkyl/nrf-play/blob/main/src/bin/mono.rs +[`Nordic nRF52 series Timer`]: https://github.com/kalkyl/nrf-play/blob/main/src/bin/mono.rs +[`Nordic nRF52 series RTC`]: https://gist.github.com/korken89/fe94a475726414dd1bce031c76adc3dd [`Systick based`]: https://github.com/rtic-rs/systick-monotonic [`DWT and Systick based`]: https://github.com/rtic-rs/dwt-systick-monotonic |
