//! API for delays with the systick timer //! //! Please be aware of potential overflows when using `delay_us`. //! E.g. at 48MHz the maximum delay is 89 seconds. //! //! Consider using the timers api as a more flexible interface //! //! # Example //! //! ``` no_run //! use stm32f0xx_hal as hal; //! //! use crate::hal::pac; //! use crate::hal::prelude::*; //! use crate::hal::delay::Delay; //! use cortex_m::peripheral::Peripherals; //! //! let mut p = pac::Peripherals::take().unwrap(); //! let mut cp = cortex_m::Peripherals::take().unwrap(); //! //! let mut rcc = p.RCC.configure().freeze(&mut p.FLASH); //! let mut delay = Delay::new(cp.SYST, &rcc); //! loop { //! delay.delay_ms(1_000_u16); //! } //! ``` use cast::{u16, u32}; use cortex_m::peripheral::syst::SystClkSource; use cortex_m::peripheral::SYST; use crate::rcc::Rcc; use embedded_hal::blocking::delay::{DelayMs, DelayUs}; /// System timer (SysTick) as a delay provider #[derive(Clone)] pub struct Delay { scale: u32, } const SYSTICK_RANGE: u32 = 0x0100_0000; impl Delay { /// Configures the system timer (SysTick) as a delay provider pub fn new(mut syst: SYST, rcc: &Rcc) -> Delay { syst.set_clock_source(SystClkSource::Core); syst.set_reload(SYSTICK_RANGE - 1); syst.clear_current(); syst.enable_counter(); assert!(rcc.clocks.hclk().0 >= 1_000_000); let scale = rcc.clocks.hclk().0 / 1_000_000; Delay { scale } // As access to the count register is possible without a reference to the systick, we can // just drop it } } impl DelayMs for Delay { // At 48 MHz (the maximum frequency), calling delay_us with ms * 1_000 directly overflows at 0x15D86 (just over the max u16 value) // So we implement a separate, higher level, delay loop fn delay_ms(&mut self, mut ms: u32) { const MAX_MS: u32 = 0x0000_FFFF; while ms != 0 { let current_ms = if ms <= MAX_MS { ms } else { MAX_MS }; self.delay_us(current_ms * 1_000); ms -= current_ms; } } } impl DelayMs for Delay { fn delay_ms(&mut self, ms: u16) { // Call delay_us directly, so we don't have to use the additional // delay loop the u32 variant uses self.delay_us(u32(ms) * 1_000); } } impl DelayMs for Delay { fn delay_ms(&mut self, ms: u8) { self.delay_ms(u16(ms)); } } // At 48MHz (the maximum frequency), this overflows at approx. 2^32 / 48 = 89 seconds impl DelayUs for Delay { fn delay_us(&mut self, us: u32) { // The SysTick Reload Value register supports values between 1 and 0x00FFFFFF. // Here less than maximum is used so we have some play if there's a long running interrupt. const MAX_TICKS: u32 = 0x007F_FFFF; let mut total_ticks = us * self.scale; while total_ticks != 0 { let current_ticks = if total_ticks <= MAX_TICKS { total_ticks } else { MAX_TICKS }; let start_count = SYST::get_current(); total_ticks -= current_ticks; // Use the wrapping substraction and the modulo to deal with the systick wrapping around // from 0 to 0xFFFF while (start_count.wrapping_sub(SYST::get_current()) % SYSTICK_RANGE) < current_ticks {} } } } impl DelayUs for Delay { fn delay_us(&mut self, us: u16) { self.delay_us(u32(us)) } } impl DelayUs for Delay { fn delay_us(&mut self, us: u8) { self.delay_us(u32(us)) } }