Enum stm32wlxx_hal::pac::tim1::cr1::CMS_A
#[repr(u8)]pub enum CMS_A {
EdgeAligned = 0,
CenterAligned1 = 1,
CenterAligned2 = 2,
CenterAligned3 = 3,
}
Available on crate feature
stm32wl5x_cm4
only.Expand description
Center-aligned mode selection
Value on reset: 0
Variants§
EdgeAligned = 0
0: The counter counts up or down depending on the direction bit
CenterAligned1 = 1
1: The counter counts up and down alternatively. Output compare interrupt flags are set only when the counter is counting down.
CenterAligned2 = 2
2: The counter counts up and down alternatively. Output compare interrupt flags are set only when the counter is counting up.
CenterAligned3 = 3
3: The counter counts up and down alternatively. Output compare interrupt flags are set both when the counter is counting up or down.
Trait Implementations§
impl Copy for CMS_A
impl StructuralPartialEq for CMS_A
Auto Trait Implementations§
impl RefUnwindSafe for CMS_A
impl Send for CMS_A
impl Sync for CMS_A
impl Unpin for CMS_A
impl UnwindSafe for CMS_A
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