atsamd51p

Struct Etm

Source
pub struct Etm { /* private fields */ }
Expand description

Embedded Trace Macrocell

Implementations§

Source§

impl Etm

Source

pub const PTR: *const RegisterBlock = {0xe0041000 as *const etm::RegisterBlock}

Pointer to the register block

Source

pub const fn ptr() -> *const RegisterBlock

Return the pointer to the register block

Source

pub unsafe fn steal() -> Self

Steal an instance of this peripheral

§Safety

Ensure that the new instance of the peripheral cannot be used in a way that may race with any existing instances, for example by only accessing read-only or write-only registers, or by consuming the original peripheral and using critical sections to coordinate access between multiple new instances.

Additionally, other software such as HALs may rely on only one peripheral instance existing to ensure memory safety; ensure no stolen instances are passed to such software.

Methods from Deref<Target = RegisterBlock>§

Source

pub fn cr(&self) -> &Cr

0x00 - ETM Main Control Register

Source

pub fn ccr(&self) -> &Ccr

0x04 - ETM Configuration Code Register

Source

pub fn trigger(&self) -> &Trigger

0x08 - ETM Trigger Event Register

Source

pub fn sr(&self) -> &Sr

0x10 - ETM Status Register

Source

pub fn scr(&self) -> &Scr

0x14 - ETM System Configuration Register

Source

pub fn teevr(&self) -> &Teevr

0x20 - ETM TraceEnable Event Register

Source

pub fn tecr1(&self) -> &Tecr1

0x24 - ETM TraceEnable Control 1 Register

Source

pub fn fflr(&self) -> &Fflr

0x28 - ETM FIFO Full Level Register

Source

pub fn cntrldvr1(&self) -> &Cntrldvr1

0x140 - ETM Free-running Counter Reload Value

Source

pub fn syncfr(&self) -> &Syncfr

0x1e0 - ETM Synchronization Frequency Register

Source

pub fn idr(&self) -> &Idr

0x1e4 - ETM ID Register

Source

pub fn ccer(&self) -> &Ccer

0x1e8 - ETM Configuration Code Extension Register

Source

pub fn tesseicr(&self) -> &Tesseicr

0x1f0 - ETM TraceEnable Start/Stop EmbeddedICE Control Register

Source

pub fn tsevt(&self) -> &Tsevt

0x1f8 - ETM TimeStamp Event Register

Source

pub fn traceidr(&self) -> &Traceidr

0x200 - ETM CoreSight Trace ID Register

Source

pub fn idr2(&self) -> &Idr2

0x208 - ETM ID Register 2

Source

pub fn pdsr(&self) -> &Pdsr

0x314 - ETM Device Power-Down Status Register

Source

pub fn itmiscin(&self) -> &Itmiscin

0xee0 - ETM Integration Test Miscellaneous Inputs

Source

pub fn ittrigout(&self) -> &Ittrigout

0xee8 - ETM Integration Test Trigger Out

Source

pub fn itatbctr2(&self) -> &Itatbctr2

0xef0 - ETM Integration Test ATB Control 2

Source

pub fn itatbctr0(&self) -> &Itatbctr0

0xef8 - ETM Integration Test ATB Control 0

Source

pub fn itctrl(&self) -> &Itctrl

0xf00 - ETM Integration Mode Control Register

Source

pub fn claimset(&self) -> &Claimset

0xfa0 - ETM Claim Tag Set Register

Source

pub fn claimclr(&self) -> &Claimclr

0xfa4 - ETM Claim Tag Clear Register

Source

pub fn lar(&self) -> &Lar

0xfb0 - ETM Lock Access Register

Source

pub fn lsr(&self) -> &Lsr

0xfb4 - ETM Lock Status Register

Source

pub fn authstatus(&self) -> &Authstatus

0xfb8 - ETM Authentication Status Register

Source

pub fn devtype(&self) -> &Devtype

0xfcc - ETM CoreSight Device Type Register

Source

pub fn pidr4(&self) -> &Pidr4

0xfd0 - ETM Peripheral Identification Register #4

Source

pub fn pidr5(&self) -> &Pidr5

0xfd4 - ETM Peripheral Identification Register #5

Source

pub fn pidr6(&self) -> &Pidr6

0xfd8 - ETM Peripheral Identification Register #6

Source

pub fn pidr7(&self) -> &Pidr7

0xfdc - ETM Peripheral Identification Register #7

Source

pub fn pidr0(&self) -> &Pidr0

0xfe0 - ETM Peripheral Identification Register #0

Source

pub fn pidr1(&self) -> &Pidr1

0xfe4 - ETM Peripheral Identification Register #1

Source

pub fn pidr2(&self) -> &Pidr2

0xfe8 - ETM Peripheral Identification Register #2

Source

pub fn pidr3(&self) -> &Pidr3

0xfec - ETM Peripheral Identification Register #3

Source

pub fn cidr0(&self) -> &Cidr0

0xff0 - ETM Component Identification Register #0

Source

pub fn cidr1(&self) -> &Cidr1

0xff4 - ETM Component Identification Register #1

Source

pub fn cidr2(&self) -> &Cidr2

0xff8 - ETM Component Identification Register #2

Source

pub fn cidr3(&self) -> &Cidr3

0xffc - ETM Component Identification Register #3

Trait Implementations§

Source§

impl Debug for Etm

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Deref for Etm

Source§

type Target = RegisterBlock

The resulting type after dereferencing.
Source§

fn deref(&self) -> &Self::Target

Dereferences the value.
Source§

impl Send for Etm

Auto Trait Implementations§

§

impl Freeze for Etm

§

impl RefUnwindSafe for Etm

§

impl !Sync for Etm

§

impl Unpin for Etm

§

impl UnwindSafe for Etm

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<P, T> Receiver for P
where P: Deref<Target = T> + ?Sized, T: ?Sized,

Source§

type Target = T

🔬This is a nightly-only experimental API. (arbitrary_self_types)
The target type on which the method may be called.
Source§

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

Source§

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>,

Source§

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.