Embassy
stm32-metapac

Crates

git

Versions

stm32h563vg

Flavors

#[repr(transparent)]
pub struct Dbgcr(pub u32);
Expand description

SBS debug control register

Tuple Fields§

§0: u32

Implementations§

§

impl Dbgcr

pub const fn ap_unlock(&self) -> u8

access port unlock Write 0xB4 to this bitfield to open the device access port.

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

access port unlock Write 0xB4 to this bitfield to open the device access port.

pub const fn dbg_unlock(&self) -> u8

debug unlock when DBG_AUTH_HDPL is reached Write 0xB4 to this bitfield to open the debug when HDPL in SBS_HDPLSR equals to DBG_AUTH_HDPL in this register.

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

debug unlock when DBG_AUTH_HDPL is reached Write 0xB4 to this bitfield to open the debug when HDPL in SBS_HDPLSR equals to DBG_AUTH_HDPL in this register.

pub const fn dbg_auth_hdpl(&self) -> DbgAuthHdpl

authenticated debug temporal isolation level Writing to this bitfield defines at which HDPL the authenticated debug opens. Note: Writing any other values is ignored. Reading any other value means the debug never opens.

pub fn set_dbg_auth_hdpl(&mut self, val: DbgAuthHdpl)

authenticated debug temporal isolation level Writing to this bitfield defines at which HDPL the authenticated debug opens. Note: Writing any other values is ignored. Reading any other value means the debug never opens.

pub const fn dbg_auth_sec(&self) -> u8

control debug opening secure/non-secure Write 0xB4 to this bitfield to open debug for secure and non-secure. Writing any other values only open non-secure.

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

control debug opening secure/non-secure Write 0xB4 to this bitfield to open debug for secure and non-secure. Writing any other values only open non-secure.

Trait Implementations§

§

impl Clone for Dbgcr

§

fn clone(&self) -> Dbgcr

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
§

impl Default for Dbgcr

§

fn default() -> Dbgcr

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

impl PartialEq for Dbgcr

§

fn eq(&self, other: &Dbgcr) -> 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.
§

impl Copy for Dbgcr

§

impl Eq for Dbgcr

§

impl StructuralEq for Dbgcr

§

impl StructuralPartialEq for Dbgcr

Auto Trait Implementations§

§

impl RefUnwindSafe for Dbgcr

§

impl Send for Dbgcr

§

impl Sync for Dbgcr

§

impl Unpin for Dbgcr

§

impl UnwindSafe for Dbgcr

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where 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 T
where 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 T
where 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 T
where 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.