Enum Tst
#[repr(u8)]pub enum Tst {
_00 = 0,
_01 = 1,
_10 = 2,
_11 = 3,
}Expand description
Watchdog Test
Value on reset: 0
Variants§
_00 = 0
0: Watchdog test mode disabled.
_01 = 1
1: Watchdog user mode enabled. (Watchdog test mode disabled.) After testing the watchdog, software should use this setting to indicate that the watchdog is functioning normally in user mode.
_10 = 2
2: Watchdog test mode enabled, only the low byte is used. CNT[CNTLOW] is compared with TOVAL[TOVALLOW].
_11 = 3
3: Watchdog test mode enabled, only the high byte is used. CNT[CNTHIGH] is compared with TOVAL[TOVALHIGH].
Trait Implementations§
impl Copy for Tst
impl Eq for Tst
impl IsEnum for Tst
impl StructuralPartialEq for Tst
Auto Trait Implementations§
impl Freeze for Tst
impl RefUnwindSafe for Tst
impl Send for Tst
impl Sync for Tst
impl Unpin for Tst
impl UnwindSafe for Tst
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