Embassy
stm32-metapac

Crates

git

Versions

stm32h573zi

Flavors

pub struct Dbgmcu { /* private fields */ }
Expand description

Microcontroller debug unit.

Implementations§

§

impl Dbgmcu

pub const unsafe fn from_ptr(ptr: *mut ()) -> Self

pub const fn as_ptr(&self) -> *mut ()

pub const fn idcode(self) -> Reg<Idcode, RW>

DBGMCU identity code register.

pub const fn cr(self) -> Reg<Cr, RW>

DBGMCU configuration register.

pub const fn apb1lfzr(self) -> Reg<Apb1lfzr, RW>

DBGMCU APB1L peripheral freeze register.

pub const fn apb1hfzr(self) -> Reg<Apb1hfzr, RW>

DBGMCU APB1H peripheral freeze register.

pub const fn apb2fzr(self) -> Reg<Apb2fzr, RW>

DBGMCU APB2 peripheral freeze register.

pub const fn apb3fzr(self) -> Reg<Apb3fzr, RW>

DBGMCU APB3 peripheral freeze register.

pub const fn ahb1fzr(self) -> Reg<Ahb1fzr, RW>

DBGMCU AHB1 peripheral freeze register.

pub const fn sr(self) -> Reg<Sr, RW>

DBGMCU status register.

pub const fn auth_host(self) -> Reg<u32, RW>

DBGMCU debug authentication mailbox host register.

pub const fn auth_device(self) -> Reg<u32, RW>

DBGMCU debug authentication mailbox device register.

pub const fn auth_ack(self) -> Reg<AuthAck, RW>

DBGMCU debug authentication mailbox acknowledge register.

pub const fn pidr4(self) -> Reg<Pidr4, RW>

DBGMCU CoreSight peripheral identity register 4.

pub const fn pidr0(self) -> Reg<Pidr0, RW>

DBGMCU CoreSight peripheral identity register 0.

pub const fn pidr1(self) -> Reg<Pidr1, RW>

DBGMCU CoreSight peripheral identity register 1.

pub const fn pidr2(self) -> Reg<Pidr2, RW>

DBGMCU CoreSight peripheral identity register 2.

pub const fn pidr3(self) -> Reg<Pidr3, RW>

DBGMCU CoreSight peripheral identity register 3.

pub const fn cidr0(self) -> Reg<Cidr0, RW>

DBGMCU CoreSight component identity register 0.

pub const fn cidr1(self) -> Reg<Cidr1, RW>

DBGMCU CoreSight component identity register 1.

pub const fn cidr2(self) -> Reg<Cidr2, RW>

DBGMCU CoreSight component identity register 2.

pub const fn cidr3(self) -> Reg<Cidr3, RW>

DBGMCU CoreSight component identity register 3.

Trait Implementations§

§

impl Clone for Dbgmcu

§

fn clone(&self) -> Dbgmcu

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 PartialEq for Dbgmcu

§

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

§

impl Eq for Dbgmcu

§

impl Send for Dbgmcu

§

impl StructuralEq for Dbgmcu

§

impl StructuralPartialEq for Dbgmcu

§

impl Sync for Dbgmcu

Auto Trait Implementations§

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.