2023-04-13 18:10:29 +02:00
|
|
|
//! [`Monotonic`] based on Cortex-M SysTick. Note: this implementation is inefficient as it
|
|
|
|
//! ticks and generates interrupts at a constant rate.
|
2023-04-01 20:48:23 +02:00
|
|
|
//!
|
2023-04-13 18:10:29 +02:00
|
|
|
//! Currently, the following tick rates are supported:
|
|
|
|
//!
|
|
|
|
//! | Feature | Tick rate | Precision |
|
|
|
|
//! |:----------------:|----------:|----------:|
|
|
|
|
//! | (none / default) | 1 Hz | 1 ms |
|
|
|
|
//! | systick-100hz | 100 Hz | 10 ms |
|
|
|
|
//! | systick-10khz | 10 KHz | 0.1 ms |
|
|
|
|
|
2023-04-01 20:48:23 +02:00
|
|
|
//! # Example
|
|
|
|
//!
|
|
|
|
//! ```
|
|
|
|
//! use rtic_monotonics::systick::*;
|
|
|
|
//!
|
2023-04-02 20:32:10 +02:00
|
|
|
//! fn init() {
|
|
|
|
//! # // This is normally provided by the selected PAC
|
|
|
|
//! # let systick = unsafe { core::mem::transmute(()) };
|
|
|
|
//! // Generate the required token
|
|
|
|
//! let systick_token = rtic_monotonics::create_systick_token!();
|
2023-04-01 20:48:23 +02:00
|
|
|
//!
|
2023-04-02 20:32:10 +02:00
|
|
|
//! // Start the monotonic
|
|
|
|
//! Systick::start(systick, 12_000_000, systick_token);
|
|
|
|
//! }
|
2023-04-01 20:48:23 +02:00
|
|
|
//!
|
2023-04-02 20:32:10 +02:00
|
|
|
//! async fn usage() {
|
|
|
|
//! loop {
|
|
|
|
//! // Use the monotonic
|
|
|
|
//! Systick::delay(100.millis()).await;
|
|
|
|
//! }
|
2023-04-01 20:48:23 +02:00
|
|
|
//! }
|
|
|
|
//! ```
|
2023-01-23 20:57:56 +01:00
|
|
|
|
|
|
|
use super::Monotonic;
|
|
|
|
pub use super::{TimeoutError, TimerQueue};
|
2023-01-27 20:20:14 +01:00
|
|
|
use atomic_polyfill::{AtomicU32, Ordering};
|
2023-02-02 21:00:41 +01:00
|
|
|
use core::future::Future;
|
2023-01-23 20:57:56 +01:00
|
|
|
use cortex_m::peripheral::SYST;
|
2023-04-10 21:38:26 +02:00
|
|
|
pub use fugit::{self, ExtU32};
|
2023-01-23 20:57:56 +01:00
|
|
|
|
2023-03-04 02:26:34 +01:00
|
|
|
// Features should be additive, here systick-100hz gets picked if both
|
|
|
|
// `systick-100hz` and `systick-10khz` are enabled.
|
2023-02-04 10:14:12 +01:00
|
|
|
|
|
|
|
cfg_if::cfg_if! {
|
2023-03-04 02:26:34 +01:00
|
|
|
if #[cfg(feature = "systick-100hz")]
|
2023-02-04 10:14:12 +01:00
|
|
|
{
|
|
|
|
const TIMER_HZ: u32 = 100;
|
2023-03-04 02:26:34 +01:00
|
|
|
} else if #[cfg(feature = "systick-10khz")]
|
2023-02-04 10:14:12 +01:00
|
|
|
{
|
|
|
|
const TIMER_HZ: u32 = 10_000;
|
|
|
|
} else {
|
|
|
|
// Default case is 1 kHz
|
|
|
|
const TIMER_HZ: u32 = 1_000;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Systick implementing `rtic_monotonic::Monotonic` which runs at 1 kHz, 100Hz or 10 kHz.
|
2023-01-24 12:34:11 +01:00
|
|
|
pub struct Systick;
|
|
|
|
|
|
|
|
impl Systick {
|
2023-01-23 20:57:56 +01:00
|
|
|
/// Start a `Monotonic` based on SysTick.
|
|
|
|
///
|
|
|
|
/// The `sysclk` parameter is the speed at which SysTick runs at. This value should come from
|
|
|
|
/// the clock generation function of the used HAL.
|
|
|
|
///
|
|
|
|
/// Notice that the actual rate of the timer is a best approximation based on the given
|
|
|
|
/// `sysclk` and `TIMER_HZ`.
|
|
|
|
///
|
|
|
|
/// Note: Give the return value to `TimerQueue::initialize()` to initialize the timer queue.
|
2023-03-11 20:47:39 +01:00
|
|
|
pub fn start(
|
|
|
|
mut systick: cortex_m::peripheral::SYST,
|
|
|
|
sysclk: u32,
|
|
|
|
_interrupt_token: impl crate::InterruptToken<Self>,
|
|
|
|
) {
|
2023-01-23 20:57:56 +01:00
|
|
|
// + TIMER_HZ / 2 provides round to nearest instead of round to 0.
|
|
|
|
// - 1 as the counter range is inclusive [0, reload]
|
|
|
|
let reload = (sysclk + TIMER_HZ / 2) / TIMER_HZ - 1;
|
|
|
|
|
|
|
|
assert!(reload <= 0x00ff_ffff);
|
|
|
|
assert!(reload > 0);
|
|
|
|
|
|
|
|
systick.disable_counter();
|
|
|
|
systick.set_clock_source(cortex_m::peripheral::syst::SystClkSource::Core);
|
|
|
|
systick.set_reload(reload);
|
|
|
|
systick.enable_interrupt();
|
|
|
|
systick.enable_counter();
|
|
|
|
|
2023-02-02 21:00:41 +01:00
|
|
|
SYSTICK_TIMER_QUEUE.initialize(Systick {});
|
2023-01-23 20:57:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
fn systick() -> SYST {
|
|
|
|
unsafe { core::mem::transmute::<(), SYST>(()) }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static SYSTICK_CNT: AtomicU32 = AtomicU32::new(0);
|
2023-02-02 21:00:41 +01:00
|
|
|
static SYSTICK_TIMER_QUEUE: TimerQueue<Systick> = TimerQueue::new();
|
|
|
|
|
|
|
|
// Forward timerqueue interface
|
|
|
|
impl Systick {
|
|
|
|
/// Used to access the underlying timer queue
|
|
|
|
#[doc(hidden)]
|
|
|
|
pub fn __tq() -> &'static TimerQueue<Systick> {
|
|
|
|
&SYSTICK_TIMER_QUEUE
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Timeout at a specific time.
|
|
|
|
pub async fn timeout_at<F: Future>(
|
|
|
|
instant: <Self as Monotonic>::Instant,
|
|
|
|
future: F,
|
|
|
|
) -> Result<F::Output, TimeoutError> {
|
|
|
|
SYSTICK_TIMER_QUEUE.timeout_at(instant, future).await
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Timeout after a specific duration.
|
|
|
|
#[inline]
|
|
|
|
pub async fn timeout_after<F: Future>(
|
|
|
|
duration: <Self as Monotonic>::Duration,
|
|
|
|
future: F,
|
|
|
|
) -> Result<F::Output, TimeoutError> {
|
|
|
|
SYSTICK_TIMER_QUEUE.timeout_after(duration, future).await
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Delay for some duration of time.
|
|
|
|
#[inline]
|
|
|
|
pub async fn delay(duration: <Self as Monotonic>::Duration) {
|
|
|
|
SYSTICK_TIMER_QUEUE.delay(duration).await;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Delay to some specific time instant.
|
|
|
|
pub async fn delay_until(instant: <Self as Monotonic>::Instant) {
|
|
|
|
SYSTICK_TIMER_QUEUE.delay_until(instant).await;
|
|
|
|
}
|
|
|
|
}
|
2023-01-23 20:57:56 +01:00
|
|
|
|
2023-01-24 12:34:11 +01:00
|
|
|
impl Monotonic for Systick {
|
2023-01-23 20:57:56 +01:00
|
|
|
type Instant = fugit::TimerInstantU32<TIMER_HZ>;
|
|
|
|
type Duration = fugit::TimerDurationU32<TIMER_HZ>;
|
|
|
|
|
|
|
|
const ZERO: Self::Instant = Self::Instant::from_ticks(0);
|
|
|
|
|
|
|
|
fn now() -> Self::Instant {
|
|
|
|
if Self::systick().has_wrapped() {
|
|
|
|
SYSTICK_CNT.fetch_add(1, Ordering::AcqRel);
|
|
|
|
}
|
|
|
|
|
|
|
|
Self::Instant::from_ticks(SYSTICK_CNT.load(Ordering::Relaxed))
|
|
|
|
}
|
|
|
|
|
|
|
|
fn set_compare(_: Self::Instant) {
|
|
|
|
// No need to do something here, we get interrupts anyway.
|
|
|
|
}
|
|
|
|
|
|
|
|
fn clear_compare_flag() {
|
|
|
|
// NOOP with SysTick interrupt
|
|
|
|
}
|
|
|
|
|
|
|
|
fn pend_interrupt() {
|
|
|
|
cortex_m::peripheral::SCB::set_pendst();
|
|
|
|
}
|
|
|
|
|
|
|
|
fn on_interrupt() {
|
|
|
|
if Self::systick().has_wrapped() {
|
|
|
|
SYSTICK_CNT.fetch_add(1, Ordering::AcqRel);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn enable_timer() {}
|
|
|
|
|
|
|
|
fn disable_timer() {}
|
|
|
|
}
|
|
|
|
|
2023-02-15 23:21:52 +01:00
|
|
|
#[cfg(feature = "embedded-hal-async")]
|
|
|
|
impl embedded_hal_async::delay::DelayUs for Systick {
|
2023-01-23 20:57:56 +01:00
|
|
|
type Error = core::convert::Infallible;
|
|
|
|
|
|
|
|
async fn delay_us(&mut self, us: u32) -> Result<(), Self::Error> {
|
2023-02-02 21:00:41 +01:00
|
|
|
SYSTICK_TIMER_QUEUE.delay(us.micros()).await;
|
2023-01-23 20:57:56 +01:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
async fn delay_ms(&mut self, ms: u32) -> Result<(), Self::Error> {
|
2023-02-02 21:00:41 +01:00
|
|
|
SYSTICK_TIMER_QUEUE.delay(ms.millis()).await;
|
2023-01-23 20:57:56 +01:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-02-02 21:00:41 +01:00
|
|
|
/// Register the Systick interrupt for the monotonic.
|
2023-01-23 20:57:56 +01:00
|
|
|
#[macro_export]
|
2023-03-29 20:09:36 +02:00
|
|
|
macro_rules! create_systick_token {
|
2023-03-15 20:17:26 +01:00
|
|
|
() => {{
|
2023-01-23 20:57:56 +01:00
|
|
|
#[no_mangle]
|
|
|
|
#[allow(non_snake_case)]
|
|
|
|
unsafe extern "C" fn SysTick() {
|
2023-03-15 20:04:27 +01:00
|
|
|
$crate::systick::Systick::__tq().on_monotonic_interrupt();
|
2023-01-23 20:57:56 +01:00
|
|
|
}
|
2023-03-11 20:47:39 +01:00
|
|
|
|
|
|
|
pub struct SystickToken;
|
|
|
|
|
2023-03-15 20:17:26 +01:00
|
|
|
unsafe impl $crate::InterruptToken<$crate::systick::Systick> for SystickToken {}
|
2023-03-11 20:47:39 +01:00
|
|
|
|
|
|
|
SystickToken
|
2023-03-15 20:17:26 +01:00
|
|
|
}};
|
2023-01-23 20:57:56 +01:00
|
|
|
}
|