pub struct DCB { /* private fields */ }
Expand description
Debug Control Block
Implementations§
Source§impl DCB
impl DCB
Sourcepub fn enable_trace(&mut self)
pub fn enable_trace(&mut self)
Enables TRACE. This is for example required by the
peripheral::DWT
cycle counter to work properly.
As by STM documentation, this flag is not reset on
soft-reset, only on power reset.
Sourcepub fn disable_trace(&mut self)
pub fn disable_trace(&mut self)
Disables TRACE. See DCB::enable_trace()
for more details
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DCB
impl RefUnwindSafe for DCB
impl !Sync for DCB
impl Unpin for DCB
impl UnwindSafe for DCB
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more