[][src]Struct probe_rs::architecture::arm::m0::Dhcsr

pub struct Dhcsr(pub u32);

Implementations

impl Dhcsr[src]

pub fn s_reset_st(&self) -> bool[src]

pub fn s_retire_st(&self) -> bool[src]

pub fn s_lockup(&self) -> bool[src]

pub fn s_sleep(&self) -> bool[src]

pub fn s_halt(&self) -> bool[src]

pub fn s_regrdy(&self) -> bool[src]

pub fn c_maskings(&self) -> bool[src]

pub fn set_c_maskints(&mut self, value: bool)[src]

pub fn c_step(&self) -> bool[src]

pub fn set_c_step(&mut self, value: bool)[src]

pub fn c_halt(&self) -> bool[src]

pub fn set_c_halt(&mut self, value: bool)[src]

pub fn c_debugen(&self) -> bool[src]

pub fn set_c_debugen(&mut self, value: bool)[src]

impl Dhcsr[src]

pub fn enable_write(&mut self)[src]

This function sets the bit to enable writes to this register.

C1.6.3 Debug Halting Control and Status Register, DHCSR: Debug key: Software must write 0xA05F to this field to enable write accesses to bits [15:0], otherwise the processor ignores the write access.

Trait Implementations

impl<T> BitRange<T> for Dhcsr where
    u32: BitRange<T>, 
[src]

impl Clone for Dhcsr[src]

impl Copy for Dhcsr[src]

impl Debug for Dhcsr[src]

impl From<Dhcsr> for u32[src]

impl From<u32> for Dhcsr[src]

Auto Trait Implementations

impl RefUnwindSafe for Dhcsr

impl Send for Dhcsr

impl Sync for Dhcsr

impl Unpin for Dhcsr

impl UnwindSafe for Dhcsr

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Bit for T where
    T: BitRange<u8>, 
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.