Enum stm32_metapac::hrtim::vals::Updgat
#[repr(u8)]pub enum Updgat {
Show 16 variants
INDEPENDENT = 0,
DMABURST = 1,
DMABURST_UPDATE = 2,
INPUT1 = 3,
INPUT2 = 4,
INPUT3 = 5,
INPUT1_UPDATE = 6,
INPUT2_UPDATE = 7,
INPUT3_UPDATE = 8,
_RESERVED_9 = 9,
_RESERVED_a = 10,
_RESERVED_b = 11,
_RESERVED_c = 12,
_RESERVED_d = 13,
_RESERVED_e = 14,
_RESERVED_f = 15,
}
Variants§
INDEPENDENT = 0
Update occurs independently from the DMA burst transfer
DMABURST = 1
Update occurs when the DMA burst transfer is completed
DMABURST_UPDATE = 2
Update occurs on the update event following DMA burst transfer completion
INPUT1 = 3
Update occurs on a rising edge of HRTIM update enable input 1
INPUT2 = 4
Update occurs on a rising edge of HRTIM update enable input 2
INPUT3 = 5
Update occurs on a rising edge of HRTIM update enable input 3
INPUT1_UPDATE = 6
Update occurs on the update event following a rising edge of HRTIM update enable input 1
INPUT2_UPDATE = 7
Update occurs on the update event following a rising edge of HRTIM update enable input 2
INPUT3_UPDATE = 8
Update occurs on the update event following a rising edge of HRTIM update enable input 3
_RESERVED_9 = 9
_RESERVED_a = 10
_RESERVED_b = 11
_RESERVED_c = 12
_RESERVED_d = 13
_RESERVED_e = 14
_RESERVED_f = 15
Implementations§
Trait Implementations§
§impl Ord for Updgat
impl Ord for Updgat
§impl PartialOrd for Updgat
impl PartialOrd for Updgat
§fn partial_cmp(&self, other: &Updgat) -> Option<Ordering>
fn partial_cmp(&self, other: &Updgat) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Copy for Updgat
impl Eq for Updgat
impl StructuralEq for Updgat
impl StructuralPartialEq for Updgat
Auto Trait Implementations§
impl RefUnwindSafe for Updgat
impl Send for Updgat
impl Sync for Updgat
impl Unpin for Updgat
impl UnwindSafe for Updgat
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