Embassy
rp-pac

Crates

git

Versions

default

Flavors

Struct rp_pac::syscfg::regs::ProcConfig

source ·
#[repr(transparent)]
pub struct ProcConfig(pub u32);
Expand description

Configuration for processors

Tuple Fields§

§0: u32

Implementations§

source§

impl ProcConfig

source

pub const fn proc0_halted(&self) -> bool

Indication that proc0 has halted

source

pub fn set_proc0_halted(&mut self, val: bool)

Indication that proc0 has halted

source

pub const fn proc1_halted(&self) -> bool

Indication that proc1 has halted

source

pub fn set_proc1_halted(&mut self, val: bool)

Indication that proc1 has halted

source

pub const fn proc0_dap_instid(&self) -> u8

Configure proc0 DAP instance ID. Recommend that this is NOT changed until you require debug access in multi-chip environment WARNING: do not set to 15 as this is reserved for RescueDP

source

pub fn set_proc0_dap_instid(&mut self, val: u8)

Configure proc0 DAP instance ID. Recommend that this is NOT changed until you require debug access in multi-chip environment WARNING: do not set to 15 as this is reserved for RescueDP

source

pub const fn proc1_dap_instid(&self) -> u8

Configure proc1 DAP instance ID. Recommend that this is NOT changed until you require debug access in multi-chip environment WARNING: do not set to 15 as this is reserved for RescueDP

source

pub fn set_proc1_dap_instid(&mut self, val: u8)

Configure proc1 DAP instance ID. Recommend that this is NOT changed until you require debug access in multi-chip environment WARNING: do not set to 15 as this is reserved for RescueDP

Trait Implementations§

source§

impl Clone for ProcConfig

source§

fn clone(&self) -> ProcConfig

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Default for ProcConfig

source§

fn default() -> ProcConfig

Returns the “default value” for a type. Read more
source§

impl PartialEq<ProcConfig> for ProcConfig

source§

fn eq(&self, other: &ProcConfig) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Copy for ProcConfig

source§

impl Eq for ProcConfig

source§

impl StructuralEq for ProcConfig

source§

impl StructuralPartialEq for ProcConfig

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.