pub enum CPU0WAIT_A {
NORMALLY_OR_POWERUP = 0,
WAIT_OR_NO_POWERUP = 1,
}Expand description
CPU 0 waits at boot and whether CPU1 powers up
Value on reset: 0
Variants§
NORMALLY_OR_POWERUP = 0
0: CPU0 boot normally. From Power ON reset, nSRST reset or Watchdog Reset, CPU 1 powers up
WAIT_OR_NO_POWERUP = 1
1: CPU0 wait. From Power ON reset, nSRST reset or Watchdog Reset, CPU 1 do not power up
Trait Implementations§
Source§impl Clone for CPU0WAIT_A
impl Clone for CPU0WAIT_A
Source§fn clone(&self) -> CPU0WAIT_A
fn clone(&self) -> CPU0WAIT_A
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CPU0WAIT_A
impl Debug for CPU0WAIT_A
Source§impl From<CPU0WAIT_A> for bool
impl From<CPU0WAIT_A> for bool
Source§fn from(variant: CPU0WAIT_A) -> Self
fn from(variant: CPU0WAIT_A) -> Self
Converts to this type from the input type.
Source§impl PartialEq for CPU0WAIT_A
impl PartialEq for CPU0WAIT_A
impl Copy for CPU0WAIT_A
impl Eq for CPU0WAIT_A
impl StructuralPartialEq for CPU0WAIT_A
Auto Trait Implementations§
impl Freeze for CPU0WAIT_A
impl RefUnwindSafe for CPU0WAIT_A
impl Send for CPU0WAIT_A
impl Sync for CPU0WAIT_A
impl Unpin for CPU0WAIT_A
impl UnwindSafe for CPU0WAIT_A
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