2020-11-12 01:44:28 +08:00
|
|
|
///! The sampling timer is used for managing ADC sampling and external reference timestamping.
|
2020-11-12 01:28:48 +08:00
|
|
|
use super::hal;
|
|
|
|
|
2021-02-03 20:03:17 +08:00
|
|
|
use hal::stm32::{
|
|
|
|
// TIM1 and TIM8 have identical registers.
|
|
|
|
tim1 as __tim8,
|
|
|
|
tim2 as __tim2,
|
|
|
|
// TIM2 and TIM5 have identical registers.
|
|
|
|
tim2 as __tim5,
|
|
|
|
tim3 as __tim3,
|
|
|
|
};
|
2020-12-10 01:19:33 +08:00
|
|
|
|
2021-01-06 21:42:36 +08:00
|
|
|
/// The event that should generate an external trigger from the peripheral.
|
2020-12-10 01:19:33 +08:00
|
|
|
#[allow(dead_code)]
|
|
|
|
pub enum TriggerGenerator {
|
|
|
|
Reset = 0b000,
|
|
|
|
Enable = 0b001,
|
|
|
|
Update = 0b010,
|
|
|
|
ComparePulse = 0b011,
|
|
|
|
Ch1Compare = 0b100,
|
|
|
|
Ch2Compare = 0b101,
|
|
|
|
Ch3Compare = 0b110,
|
|
|
|
Ch4Compare = 0b111,
|
|
|
|
}
|
|
|
|
|
2021-01-06 21:42:36 +08:00
|
|
|
/// Selects the trigger source for the timer peripheral.
|
2020-12-10 01:19:33 +08:00
|
|
|
#[allow(dead_code)]
|
|
|
|
pub enum TriggerSource {
|
|
|
|
Trigger0 = 0,
|
|
|
|
Trigger1 = 0b01,
|
|
|
|
Trigger2 = 0b10,
|
|
|
|
Trigger3 = 0b11,
|
|
|
|
}
|
|
|
|
|
2021-01-06 21:42:36 +08:00
|
|
|
/// Prescalers for externally-supplied reference clocks.
|
2021-01-18 23:47:47 +08:00
|
|
|
#[allow(dead_code)]
|
2020-12-10 01:19:33 +08:00
|
|
|
pub enum Prescaler {
|
2020-12-15 20:13:05 +08:00
|
|
|
Div1 = 0b00,
|
|
|
|
Div2 = 0b01,
|
2020-12-10 01:19:33 +08:00
|
|
|
Div4 = 0b10,
|
|
|
|
Div8 = 0b11,
|
|
|
|
}
|
|
|
|
|
2021-01-11 19:31:15 +08:00
|
|
|
/// Optional slave operation modes of a timer.
|
2021-01-18 23:47:47 +08:00
|
|
|
#[allow(dead_code)]
|
2021-01-11 19:31:15 +08:00
|
|
|
pub enum SlaveMode {
|
|
|
|
Disabled = 0,
|
|
|
|
Trigger = 0b0110,
|
|
|
|
}
|
|
|
|
|
2021-02-09 21:36:50 +08:00
|
|
|
/// Optional input capture preconditioning filter configurations.
|
|
|
|
#[allow(dead_code)]
|
|
|
|
pub enum InputFilter {
|
|
|
|
Div1N1 = 0b0000,
|
|
|
|
Div1N8 = 0b0011,
|
|
|
|
}
|
|
|
|
|
2020-12-08 00:29:36 +08:00
|
|
|
macro_rules! timer_channels {
|
2020-12-10 01:19:33 +08:00
|
|
|
($name:ident, $TY:ident, $size:ty) => {
|
2020-12-08 00:29:36 +08:00
|
|
|
paste::paste! {
|
2020-12-08 00:58:36 +08:00
|
|
|
|
|
|
|
/// The timer used for managing ADC sampling.
|
|
|
|
pub struct $name {
|
|
|
|
timer: hal::timer::Timer<hal::stm32::[< $TY >]>,
|
|
|
|
channels: Option<[< $TY:lower >]::Channels>,
|
2020-12-09 20:44:26 +08:00
|
|
|
update_event: Option<[< $TY:lower >]::UpdateEvent>,
|
2020-12-08 00:58:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
impl $name {
|
|
|
|
/// Construct the sampling timer.
|
2020-12-10 01:19:33 +08:00
|
|
|
#[allow(dead_code)]
|
2020-12-08 00:58:36 +08:00
|
|
|
pub fn new(mut timer: hal::timer::Timer<hal::stm32::[< $TY>]>) -> Self {
|
|
|
|
timer.pause();
|
|
|
|
|
|
|
|
Self {
|
|
|
|
timer,
|
2020-12-09 20:44:26 +08:00
|
|
|
// Note(unsafe): Once these channels are taken, we guarantee that we do not
|
|
|
|
// modify any of the underlying timer channel registers, as ownership of the
|
|
|
|
// channels is now provided through the associated channel structures. We
|
|
|
|
// additionally guarantee this can only be called once because there is only
|
|
|
|
// one Timer2 and this resource takes ownership of it once instantiated.
|
2020-12-08 00:58:36 +08:00
|
|
|
channels: unsafe { Some([< $TY:lower >]::Channels::new()) },
|
2020-12-09 20:44:26 +08:00
|
|
|
update_event: unsafe { Some([< $TY:lower >]::UpdateEvent::new()) },
|
2020-12-08 00:58:36 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Get the timer capture/compare channels.
|
2020-12-10 01:19:33 +08:00
|
|
|
#[allow(dead_code)]
|
2020-12-08 00:58:36 +08:00
|
|
|
pub fn channels(&mut self) -> [< $TY:lower >]::Channels {
|
|
|
|
self.channels.take().unwrap()
|
|
|
|
}
|
|
|
|
|
2020-12-09 20:44:26 +08:00
|
|
|
/// Get the timer update event.
|
|
|
|
#[allow(dead_code)]
|
|
|
|
pub fn update_event(&mut self) -> [< $TY:lower >]::UpdateEvent {
|
|
|
|
self.update_event.take().unwrap()
|
|
|
|
}
|
|
|
|
|
2020-12-08 20:53:34 +08:00
|
|
|
/// Get the period of the timer.
|
2020-12-08 01:11:46 +08:00
|
|
|
#[allow(dead_code)]
|
2020-12-10 01:19:33 +08:00
|
|
|
pub fn get_period(&self) -> $size {
|
2020-12-08 01:11:46 +08:00
|
|
|
let regs = unsafe { &*hal::stm32::$TY::ptr() };
|
|
|
|
regs.arr.read().arr().bits()
|
|
|
|
}
|
|
|
|
|
2020-12-08 20:53:34 +08:00
|
|
|
/// Manually set the period of the timer.
|
2020-12-08 01:11:46 +08:00
|
|
|
#[allow(dead_code)]
|
2021-01-06 20:34:55 +08:00
|
|
|
pub fn set_period_ticks(&mut self, period: $size) {
|
2020-12-08 01:11:46 +08:00
|
|
|
let regs = unsafe { &*hal::stm32::$TY::ptr() };
|
|
|
|
regs.arr.write(|w| w.arr().bits(period));
|
2021-01-12 20:29:15 +08:00
|
|
|
|
|
|
|
// Force the new period to take effect immediately.
|
|
|
|
self.timer.apply_freq();
|
2020-12-08 01:11:46 +08:00
|
|
|
}
|
|
|
|
|
2020-12-10 01:19:33 +08:00
|
|
|
/// Clock the timer from an external source.
|
|
|
|
///
|
|
|
|
/// # Note:
|
|
|
|
/// * Currently, only an external source applied to ETR is supported.
|
|
|
|
///
|
|
|
|
/// # Args
|
|
|
|
/// * `prescaler` - The prescaler to use for the external source.
|
|
|
|
#[allow(dead_code)]
|
|
|
|
pub fn set_external_clock(&mut self, prescaler: Prescaler) {
|
|
|
|
let regs = unsafe { &*hal::stm32::$TY::ptr() };
|
|
|
|
regs.smcr.modify(|_, w| w.etps().bits(prescaler as u8).ece().set_bit());
|
|
|
|
|
2020-12-15 20:13:05 +08:00
|
|
|
// Clear any other prescaler configuration.
|
|
|
|
regs.psc.write(|w| w.psc().bits(0));
|
2020-12-10 01:19:33 +08:00
|
|
|
}
|
|
|
|
|
2020-12-08 01:11:46 +08:00
|
|
|
/// Start the timer.
|
2020-12-10 01:19:33 +08:00
|
|
|
#[allow(dead_code)]
|
2020-12-15 20:13:05 +08:00
|
|
|
pub fn start(&mut self) {
|
2020-12-08 01:11:46 +08:00
|
|
|
// Force a refresh of the frequency settings.
|
|
|
|
self.timer.apply_freq();
|
2020-12-08 00:58:36 +08:00
|
|
|
self.timer.reset_counter();
|
2020-12-15 20:13:05 +08:00
|
|
|
|
2020-12-08 00:58:36 +08:00
|
|
|
self.timer.resume();
|
|
|
|
}
|
2020-12-10 01:19:33 +08:00
|
|
|
|
2021-01-06 21:42:36 +08:00
|
|
|
/// Configure the timer peripheral to generate a trigger based on the provided
|
|
|
|
/// source.
|
2020-12-10 01:19:33 +08:00
|
|
|
#[allow(dead_code)]
|
|
|
|
pub fn generate_trigger(&mut self, source: TriggerGenerator) {
|
|
|
|
let regs = unsafe { &*hal::stm32::$TY::ptr() };
|
|
|
|
// Note(unsafe) The TriggerGenerator enumeration is specified such that this is
|
|
|
|
// always in range.
|
|
|
|
regs.cr2.modify(|_, w| w.mms().bits(source as u8));
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2021-01-06 21:42:36 +08:00
|
|
|
/// Select a trigger source for the timer peripheral.
|
2020-12-10 01:19:33 +08:00
|
|
|
#[allow(dead_code)]
|
|
|
|
pub fn set_trigger_source(&mut self, source: TriggerSource) {
|
|
|
|
let regs = unsafe { &*hal::stm32::$TY::ptr() };
|
|
|
|
// Note(unsafe) The TriggerSource enumeration is specified such that this is
|
|
|
|
// always in range.
|
|
|
|
regs.smcr.modify(|_, w| unsafe { w.ts().bits(source as u8) } );
|
|
|
|
}
|
2021-01-11 19:31:15 +08:00
|
|
|
|
|
|
|
#[allow(dead_code)]
|
|
|
|
pub fn set_slave_mode(&mut self, source: TriggerSource, mode: SlaveMode) {
|
|
|
|
let regs = unsafe { &*hal::stm32::$TY::ptr() };
|
|
|
|
// Note(unsafe) The TriggerSource and SlaveMode enumerations are specified such
|
|
|
|
// that they are always in range.
|
|
|
|
regs.smcr.modify(|_, w| unsafe { w.sms().bits(mode as u8).ts().bits(source as u8) } );
|
|
|
|
}
|
2020-12-08 00:58:36 +08:00
|
|
|
}
|
|
|
|
|
2020-12-08 00:29:36 +08:00
|
|
|
pub mod [< $TY:lower >] {
|
|
|
|
use stm32h7xx_hal as hal;
|
|
|
|
use hal::dma::{traits::TargetAddress, PeripheralToMemory, dma::DMAReq};
|
2020-12-08 00:58:36 +08:00
|
|
|
use hal::stm32::$TY;
|
2020-12-08 00:29:36 +08:00
|
|
|
|
2020-12-09 20:44:26 +08:00
|
|
|
pub struct UpdateEvent {}
|
|
|
|
|
|
|
|
impl UpdateEvent {
|
|
|
|
/// Create a new update event
|
|
|
|
///
|
|
|
|
/// Note(unsafe): This is only safe to call once.
|
|
|
|
#[allow(dead_code)]
|
|
|
|
pub unsafe fn new() -> Self {
|
|
|
|
Self {}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Enable DMA requests upon timer updates.
|
|
|
|
#[allow(dead_code)]
|
|
|
|
pub fn listen_dma(&self) {
|
2020-12-10 01:19:33 +08:00
|
|
|
// Note(unsafe): We perform only atomic operations on the timer registers.
|
2020-12-09 20:44:26 +08:00
|
|
|
let regs = unsafe { &*<$TY>::ptr() };
|
|
|
|
regs.dier.modify(|_, w| w.ude().set_bit());
|
|
|
|
}
|
2020-12-10 01:19:33 +08:00
|
|
|
|
|
|
|
/// Trigger a DMA request manually
|
|
|
|
#[allow(dead_code)]
|
|
|
|
pub fn trigger(&self) {
|
|
|
|
let regs = unsafe { &*<$TY>::ptr() };
|
|
|
|
regs.egr.write(|w| w.ug().set_bit());
|
|
|
|
}
|
2020-12-09 20:44:26 +08:00
|
|
|
}
|
|
|
|
|
2020-12-08 00:29:36 +08:00
|
|
|
/// The channels representing the timer.
|
|
|
|
pub struct Channels {
|
|
|
|
pub ch1: Channel1,
|
|
|
|
pub ch2: Channel2,
|
|
|
|
pub ch3: Channel3,
|
|
|
|
pub ch4: Channel4,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Channels {
|
|
|
|
/// Construct a new set of channels.
|
|
|
|
///
|
|
|
|
/// Note(unsafe): This is only safe to call once.
|
2020-12-10 01:19:33 +08:00
|
|
|
#[allow(dead_code)]
|
2020-12-08 00:29:36 +08:00
|
|
|
pub unsafe fn new() -> Self {
|
|
|
|
Self {
|
|
|
|
ch1: Channel1::new(),
|
|
|
|
ch2: Channel2::new(),
|
|
|
|
ch3: Channel3::new(),
|
|
|
|
ch4: Channel4::new(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-10 01:19:33 +08:00
|
|
|
timer_channels!(1, $TY, ccmr1, $size);
|
|
|
|
timer_channels!(2, $TY, ccmr1, $size);
|
|
|
|
timer_channels!(3, $TY, ccmr2, $size);
|
|
|
|
timer_channels!(4, $TY, ccmr2, $size);
|
2020-12-08 00:29:36 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
2020-11-23 21:30:29 +08:00
|
|
|
|
2020-12-10 01:19:33 +08:00
|
|
|
($index:expr, $TY:ty, $ccmrx:expr, $size:ty) => {
|
2020-11-23 21:30:29 +08:00
|
|
|
paste::paste! {
|
2021-02-03 20:03:17 +08:00
|
|
|
pub use super::[< __ $TY:lower >]::[< $ccmrx _input >]::[< CC $index S_A>] as [< CaptureSource $index >];
|
|
|
|
|
2020-12-08 20:53:34 +08:00
|
|
|
/// A capture/compare channel of the timer.
|
2020-12-08 00:29:36 +08:00
|
|
|
pub struct [< Channel $index >] {}
|
|
|
|
|
2020-12-08 20:53:34 +08:00
|
|
|
/// A capture channel of the timer.
|
2020-12-08 00:29:36 +08:00
|
|
|
pub struct [< Channel $index InputCapture>] {}
|
|
|
|
|
|
|
|
impl [< Channel $index >] {
|
2020-11-23 21:30:29 +08:00
|
|
|
/// Construct a new timer channel.
|
|
|
|
///
|
|
|
|
/// Note(unsafe): This function must only be called once. Once constructed, the
|
|
|
|
/// constructee guarantees to never modify the timer channel.
|
2020-12-10 01:19:33 +08:00
|
|
|
#[allow(dead_code)]
|
2020-11-23 21:30:29 +08:00
|
|
|
unsafe fn new() -> Self {
|
|
|
|
Self {}
|
|
|
|
}
|
|
|
|
|
2020-12-08 00:29:36 +08:00
|
|
|
/// Allow the channel to generate DMA requests.
|
2020-12-08 00:58:36 +08:00
|
|
|
#[allow(dead_code)]
|
2020-11-23 21:30:29 +08:00
|
|
|
pub fn listen_dma(&self) {
|
|
|
|
let regs = unsafe { &*<$TY>::ptr() };
|
2020-12-08 00:29:36 +08:00
|
|
|
regs.dier.modify(|_, w| w.[< cc $index de >]().set_bit());
|
2020-11-23 21:30:29 +08:00
|
|
|
}
|
|
|
|
|
2020-12-08 00:29:36 +08:00
|
|
|
/// Operate the channel as an output-compare.
|
2020-11-23 21:30:29 +08:00
|
|
|
///
|
|
|
|
/// # Args
|
|
|
|
/// * `value` - The value to compare the sampling timer's counter against.
|
2020-12-08 00:58:36 +08:00
|
|
|
#[allow(dead_code)]
|
2020-12-10 01:19:33 +08:00
|
|
|
pub fn to_output_compare(&self, value: $size) {
|
2020-11-23 21:30:29 +08:00
|
|
|
let regs = unsafe { &*<$TY>::ptr() };
|
2020-12-10 01:19:33 +08:00
|
|
|
let arr = regs.arr.read().bits() as $size;
|
|
|
|
assert!(value <= arr);
|
2020-12-08 00:29:36 +08:00
|
|
|
regs.[< ccr $index >].write(|w| w.ccr().bits(value));
|
|
|
|
regs.[< $ccmrx _output >]()
|
|
|
|
.modify(|_, w| unsafe { w.[< cc $index s >]().bits(0) });
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Operate the channel in input-capture mode.
|
|
|
|
///
|
|
|
|
/// # Args
|
|
|
|
/// * `input` - The input source for the input capture event.
|
2020-12-08 00:58:36 +08:00
|
|
|
#[allow(dead_code)]
|
2021-02-03 20:03:17 +08:00
|
|
|
pub fn into_input_capture(self, input: [< CaptureSource $index >]) -> [< Channel $index InputCapture >]{
|
2020-12-08 00:29:36 +08:00
|
|
|
let regs = unsafe { &*<$TY>::ptr() };
|
2020-12-10 01:19:33 +08:00
|
|
|
|
2021-02-03 20:03:17 +08:00
|
|
|
regs.[< $ccmrx _input >]().modify(|_, w| w.[< cc $index s>]().variant(input));
|
|
|
|
|
2020-12-08 00:29:36 +08:00
|
|
|
[< Channel $index InputCapture >] {}
|
2020-11-23 21:30:29 +08:00
|
|
|
}
|
|
|
|
}
|
2020-11-12 01:28:48 +08:00
|
|
|
|
2020-12-08 20:53:34 +08:00
|
|
|
impl [< Channel $index InputCapture >] {
|
|
|
|
/// Get the latest capture from the channel.
|
|
|
|
#[allow(dead_code)]
|
2021-02-02 19:34:07 +08:00
|
|
|
pub fn latest_capture(&mut self) -> Result<Option<$size>, Option<$size>> {
|
2020-12-08 20:53:34 +08:00
|
|
|
// Note(unsafe): This channel owns all access to the specific timer channel.
|
|
|
|
// Only atomic operations on completed on the timer registers.
|
|
|
|
let regs = unsafe { &*<$TY>::ptr() };
|
2021-01-05 01:04:01 +08:00
|
|
|
|
2021-02-02 19:34:07 +08:00
|
|
|
let result = if regs.sr.read().[< cc $index if >]().bit_is_set() {
|
2021-01-06 19:24:09 +08:00
|
|
|
// Read the capture value. Reading the captured value clears the flag in the
|
|
|
|
// status register automatically.
|
2021-02-02 19:34:07 +08:00
|
|
|
Some(regs.[< ccr $index >].read().ccr().bits())
|
2020-12-08 20:53:34 +08:00
|
|
|
} else {
|
|
|
|
None
|
2021-01-05 01:04:01 +08:00
|
|
|
};
|
|
|
|
|
2021-01-06 19:24:09 +08:00
|
|
|
// Read SR again to check for a potential over-capture. If there is an
|
|
|
|
// overcapture, return an error.
|
2021-02-02 19:34:07 +08:00
|
|
|
if regs.sr.read().[< cc $index of >]().bit_is_set() {
|
2021-01-06 19:24:09 +08:00
|
|
|
regs.sr.modify(|_, w| w.[< cc $index of >]().clear_bit());
|
2021-02-02 19:34:07 +08:00
|
|
|
Err(result)
|
|
|
|
} else {
|
|
|
|
Ok(result)
|
2020-12-08 20:53:34 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-08 23:14:27 +08:00
|
|
|
/// Allow the channel to generate DMA requests.
|
2020-12-08 20:53:34 +08:00
|
|
|
#[allow(dead_code)]
|
2020-12-08 23:14:27 +08:00
|
|
|
pub fn listen_dma(&self) {
|
2020-12-08 20:53:34 +08:00
|
|
|
// Note(unsafe): This channel owns all access to the specific timer channel.
|
|
|
|
// Only atomic operations on completed on the timer registers.
|
|
|
|
let regs = unsafe { &*<$TY>::ptr() };
|
2020-12-08 23:14:27 +08:00
|
|
|
regs.dier.modify(|_, w| w.[< cc $index de >]().set_bit());
|
2020-12-08 20:53:34 +08:00
|
|
|
}
|
|
|
|
|
2020-12-08 23:14:27 +08:00
|
|
|
/// Enable the input capture to begin capturing timer values.
|
2020-12-08 20:53:34 +08:00
|
|
|
#[allow(dead_code)]
|
2020-12-08 23:14:27 +08:00
|
|
|
pub fn enable(&mut self) {
|
2021-02-03 20:03:17 +08:00
|
|
|
// Read the latest input capture to clear any pending data in the register.
|
|
|
|
let _ = self.latest_capture();
|
|
|
|
|
2020-12-08 20:53:34 +08:00
|
|
|
// Note(unsafe): This channel owns all access to the specific timer channel.
|
|
|
|
// Only atomic operations on completed on the timer registers.
|
|
|
|
let regs = unsafe { &*<$TY>::ptr() };
|
2020-12-08 23:14:27 +08:00
|
|
|
regs.ccer.modify(|_, w| w.[< cc $index e >]().set_bit());
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Check if an over-capture event has occurred.
|
|
|
|
#[allow(dead_code)]
|
|
|
|
pub fn check_overcapture(&self) -> bool {
|
|
|
|
// Note(unsafe): This channel owns all access to the specific timer channel.
|
|
|
|
// Only atomic operations on completed on the timer registers.
|
|
|
|
let regs = unsafe { &*<$TY>::ptr() };
|
|
|
|
regs.sr.read().[< cc $index of >]().bit_is_set()
|
2020-12-08 20:53:34 +08:00
|
|
|
}
|
2021-02-09 21:36:50 +08:00
|
|
|
|
|
|
|
/// Configure the input capture input pre-filter.
|
|
|
|
///
|
|
|
|
/// # Args
|
|
|
|
/// * `filter` - The desired input filter stage configuration. Defaults to disabled.
|
|
|
|
#[allow(dead_code)]
|
|
|
|
pub fn configure_filter(&mut self, filter: super::InputFilter) {
|
2021-02-09 21:37:49 +08:00
|
|
|
// Note(unsafe): This channel owns all access to the specific timer channel.
|
|
|
|
// Only atomic operations on completed on the timer registers.
|
2021-02-09 21:36:50 +08:00
|
|
|
let regs = unsafe { &*<$TY>::ptr() };
|
|
|
|
regs.[< $ccmrx _input >]().modify(|_, w| w.[< ic $index f >]().bits(filter as u8));
|
|
|
|
}
|
2020-12-08 20:53:34 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Note(unsafe): This manually implements DMA support for input-capture channels. This
|
|
|
|
// is safe as it is only completed once per channel and each DMA request is allocated to
|
|
|
|
// each channel as the owner.
|
2020-12-08 00:29:36 +08:00
|
|
|
unsafe impl TargetAddress<PeripheralToMemory> for [< Channel $index InputCapture >] {
|
2020-12-10 01:19:33 +08:00
|
|
|
type MemSize = $size;
|
2020-11-12 01:28:48 +08:00
|
|
|
|
2020-12-08 00:29:36 +08:00
|
|
|
const REQUEST_LINE: Option<u8> = Some(DMAReq::[< $TY _CH $index >]as u8);
|
2020-11-12 01:28:48 +08:00
|
|
|
|
2020-12-10 01:19:33 +08:00
|
|
|
fn address(&self) -> usize {
|
2020-12-08 00:29:36 +08:00
|
|
|
let regs = unsafe { &*<$TY>::ptr() };
|
2020-12-10 01:19:33 +08:00
|
|
|
®s.[<ccr $index >] as *const _ as usize
|
2020-12-08 00:29:36 +08:00
|
|
|
}
|
2020-11-23 21:30:29 +08:00
|
|
|
}
|
|
|
|
}
|
2020-12-08 00:29:36 +08:00
|
|
|
};
|
2020-11-12 01:28:48 +08:00
|
|
|
}
|
2020-12-08 00:29:36 +08:00
|
|
|
|
2020-12-08 20:53:34 +08:00
|
|
|
timer_channels!(SamplingTimer, TIM2, u32);
|
2021-01-11 19:31:15 +08:00
|
|
|
timer_channels!(ShadowSamplingTimer, TIM3, u16);
|
|
|
|
|
2020-12-08 20:53:34 +08:00
|
|
|
timer_channels!(TimestampTimer, TIM5, u32);
|
2020-12-10 01:19:33 +08:00
|
|
|
timer_channels!(PounderTimestampTimer, TIM8, u16);
|