#[repr(transparent)]pub struct Ctrl(pub u32);Expand description
Control register.
Tuple Fields§
§0: u32Implementations§
Source§impl Ctrl
impl Ctrl
Sourcepub const fn delayval(&self) -> u32
pub const fn delayval(&self) -> u32
Tick interval value. The delay will be equal to DELAYVAL + 1 periods of the timer clock. The minimum usable value is 1, for a delay of 2 timer clocks. A value of 0 stops the timer.
Sourcepub const fn set_delayval(&mut self, val: u32)
pub const fn set_delayval(&mut self, val: u32)
Tick interval value. The delay will be equal to DELAYVAL + 1 periods of the timer clock. The minimum usable value is 1, for a delay of 2 timer clocks. A value of 0 stops the timer.
Sourcepub const fn repeat(&self) -> bool
pub const fn repeat(&self) -> bool
Repeat delay. 0 = One-time delay. 1 = Delay repeats continuously.
Sourcepub const fn set_repeat(&mut self, val: bool)
pub const fn set_repeat(&mut self, val: bool)
Repeat delay. 0 = One-time delay. 1 = Delay repeats continuously.
Trait Implementations§
impl Copy for Ctrl
impl Eq for Ctrl
impl StructuralPartialEq for Ctrl
Auto Trait Implementations§
impl Freeze for Ctrl
impl RefUnwindSafe for Ctrl
impl Send for Ctrl
impl Sync for Ctrl
impl Unpin for Ctrl
impl UnwindSafe for Ctrl
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more