pub enum PVDOR {
AboveThreshold = 0,
BelowThreshold = 1,
}Expand description
programmable voltage detect output This bit is set and cleared by hardware. It is valid only if the PVD has been enabled by the PVDE bit. Note: Since the PVD is disabled in Standby mode, this bit is equal to 0 after Standby or reset until the PVDE bit is set.
Value on reset: 0
Variants§
AboveThreshold = 0
0: VDD is equal or higher than the PVD threshold selected through the PLS[2:0] bits.
BelowThreshold = 1
1: VDD is lower than the PVD threshold selected through the PLS[2:0] bits
Trait Implementations§
impl Copy for PVDOR
impl Eq for PVDOR
impl StructuralPartialEq for PVDOR
Auto Trait Implementations§
impl Freeze for PVDOR
impl RefUnwindSafe for PVDOR
impl Send for PVDOR
impl Sync for PVDOR
impl Unpin for PVDOR
impl UnwindSafe for PVDOR
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