2023-01-23 20:05:47 +01:00
|
|
|
//! ...
|
2023-01-23 20:57:56 +01:00
|
|
|
|
|
|
|
use super::Monotonic;
|
|
|
|
pub use super::{TimeoutError, TimerQueue};
|
|
|
|
use core::{
|
|
|
|
ops::Deref,
|
|
|
|
sync::atomic::{AtomicU32, Ordering},
|
|
|
|
};
|
|
|
|
use cortex_m::peripheral::SYST;
|
|
|
|
use embedded_hal_async::delay::DelayUs;
|
|
|
|
use fugit::ExtU32;
|
|
|
|
|
2023-01-24 12:34:11 +01:00
|
|
|
const TIMER_HZ: u32 = 1_000;
|
2023-01-23 20:57:56 +01:00
|
|
|
|
2023-01-24 12:34:11 +01:00
|
|
|
/// Systick implementing `rtic_monotonic::Monotonic` which runs at 1 kHz.
|
|
|
|
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.
|
|
|
|
#[must_use]
|
|
|
|
pub fn start(mut systick: cortex_m::peripheral::SYST, sysclk: u32) -> Self {
|
|
|
|
// + 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();
|
|
|
|
|
|
|
|
Systick {}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn systick() -> SYST {
|
|
|
|
unsafe { core::mem::transmute::<(), SYST>(()) }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static SYSTICK_CNT: AtomicU32 = AtomicU32::new(0);
|
|
|
|
|
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() {}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Timer queue wrapper to implement traits on
|
2023-01-24 12:34:11 +01:00
|
|
|
pub struct SystickTimerQueue(TimerQueue<Systick>);
|
2023-01-23 20:57:56 +01:00
|
|
|
|
2023-01-24 12:34:11 +01:00
|
|
|
impl SystickTimerQueue {
|
2023-01-23 20:57:56 +01:00
|
|
|
/// Create a new timer queue.
|
|
|
|
pub const fn new() -> Self {
|
|
|
|
Self(TimerQueue::new())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-01-24 12:34:11 +01:00
|
|
|
impl Deref for SystickTimerQueue {
|
|
|
|
type Target = TimerQueue<Systick>;
|
2023-01-23 20:57:56 +01:00
|
|
|
|
|
|
|
#[inline(always)]
|
|
|
|
fn deref(&self) -> &Self::Target {
|
|
|
|
&self.0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-01-24 12:34:11 +01:00
|
|
|
impl DelayUs for SystickTimerQueue {
|
2023-01-23 20:57:56 +01:00
|
|
|
type Error = core::convert::Infallible;
|
|
|
|
|
|
|
|
async fn delay_us(&mut self, us: u32) -> Result<(), Self::Error> {
|
|
|
|
self.delay(us.micros()).await;
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
async fn delay_ms(&mut self, ms: u32) -> Result<(), Self::Error> {
|
|
|
|
self.delay(ms.millis()).await;
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Register the Systick interrupt and crate a timer queue with a specific name and speed.
|
|
|
|
#[macro_export]
|
|
|
|
macro_rules! make_systick_timer_queue {
|
2023-01-24 12:34:11 +01:00
|
|
|
($timer_queue_name:ident) => {
|
|
|
|
static $timer_queue_name: SystickTimerQueue = SystickTimerQueue::new();
|
2023-01-23 20:57:56 +01:00
|
|
|
|
|
|
|
#[no_mangle]
|
|
|
|
#[allow(non_snake_case)]
|
|
|
|
unsafe extern "C" fn SysTick() {
|
|
|
|
$timer_queue_name.on_monotonic_interrupt();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|