tnetplug/src/timer.rs

41 lines
990 B
Rust
Raw Normal View History

2019-03-15 01:13:25 +08:00
use core::cell::RefCell;
use cortex_m::interrupt::Mutex;
use cortex_m_rt::exception;
use stm32f4xx_hal::{
rcc::Clocks,
time::{U32Ext, MilliSeconds},
timer::{Timer, Event as TimerEvent},
stm32::SYST,
};
2019-03-19 04:41:51 +08:00
/// Rate in Hz
const TIMER_RATE: u32 = 20;
2019-03-19 04:41:51 +08:00
/// Interval duration in milliseconds
2019-03-15 01:13:25 +08:00
const TIMER_DELTA: u32 = 1000 / TIMER_RATE;
/// Elapsed time in milliseconds
static TIMER_MS: Mutex<RefCell<u32>> = Mutex::new(RefCell::new(0));
2019-03-19 04:41:51 +08:00
/// Setup SysTick exception
2019-03-15 01:13:25 +08:00
pub fn setup(syst: SYST, clocks: Clocks) {
let mut timer = Timer::syst(syst, TIMER_RATE.hz(), clocks);
timer.listen(TimerEvent::TimeOut);
}
2019-03-19 04:41:51 +08:00
/// SysTick exception (Timer)
2019-03-15 01:13:25 +08:00
#[exception]
fn SysTick() {
cortex_m::interrupt::free(|cs| {
*TIMER_MS.borrow(cs)
.borrow_mut() += TIMER_DELTA;
});
}
2019-03-19 04:41:51 +08:00
/// Obtain current time in milliseconds
2019-03-15 01:13:25 +08:00
pub fn now() -> MilliSeconds {
let ms = cortex_m::interrupt::free(|cs| {
*TIMER_MS.borrow(cs)
.borrow()
});
ms.ms()
}