#[repr(u8)]pub enum Fsmmain {
FSMMAIN_POWERUP = 0,
FSMMAIN_ACTIVE = 1,
FSMMAIN_POWERDOWN = 2,
FSMMAIN_DEEPSLEEP = 3,
_RESERVED_4 = 4,
_RESERVED_5 = 5,
FSMMAIN_DEEPPOWERDOWN = 6,
FSMMAIN_DFT_ACTIVE = 7,
}Variants§
FSMMAIN_POWERUP = 0
POWER UP : The IC is powering up.
FSMMAIN_ACTIVE = 1
ACTIVE : Power up is completed. The IC is in normal functional operation mode.
FSMMAIN_POWERDOWN = 2
POWER DOWN : the IC has entered POWER DOWN mode.
FSMMAIN_DEEPSLEEP = 3
DEEP SLEEP: The IC has entered DEEP SLEEP mode.
_RESERVED_4 = 4
_RESERVED_5 = 5
FSMMAIN_DEEPPOWERDOWN = 6
DEEP POWER DOWN : The IC entred DEEP POWER DOWN mode.
FSMMAIN_DFT_ACTIVE = 7
IC Structural TEST Mode : The IC has entered in IC Test mode.
Implementations§
Trait Implementations§
Source§impl Ord for Fsmmain
impl Ord for Fsmmain
Source§impl PartialOrd for Fsmmain
impl PartialOrd for Fsmmain
impl Copy for Fsmmain
impl Eq for Fsmmain
impl StructuralPartialEq for Fsmmain
Auto Trait Implementations§
impl Freeze for Fsmmain
impl RefUnwindSafe for Fsmmain
impl Send for Fsmmain
impl Sync for Fsmmain
impl Unpin for Fsmmain
impl UnwindSafe for Fsmmain
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