#[repr(u8)]pub enum CMS {
EdgeAligned = 0,
CenterAligned1 = 1,
CenterAligned2 = 2,
CenterAligned3 = 3,
}
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
impl Eq for CMS
impl IsEnum for CMS
impl StructuralPartialEq for CMS
Auto Trait Implementations§
impl Freeze for CMS
impl RefUnwindSafe for CMS
impl Send for CMS
impl Sync for CMS
impl Unpin for CMS
impl UnwindSafe for CMS
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