Struct cortex_m::peripheral::ICB
source · [−]pub struct ICB { /* private fields */ }
Expand description
Implementation Control Block.
This block contains implementation-defined registers like ictr
and
actlr
. It’s called the “implementation control block” in the ARMv8-M
standard, but earlier standards contained the registers, just without a
name.
Implementations
sourceimpl ICB
impl ICB
sourcepub const PTR: *mut RegisterBlock = {0xe000e004 as *mut peripheral::icb::RegisterBlock}
pub const PTR: *mut RegisterBlock = {0xe000e004 as *mut peripheral::icb::RegisterBlock}
Pointer to the register block
sourcepub const fn ptr() -> *mut RegisterBlock
👎Deprecated since 0.7.5: Use the associated constant PTR
instead
pub const fn ptr() -> *mut RegisterBlock
PTR
insteadReturns a pointer to the register block
Trait Implementations
sourceimpl Deref for ICB
impl Deref for ICB
type Target = RegisterBlock
type Target = RegisterBlock
The resulting type after dereferencing.
impl Send for ICB
Auto Trait Implementations
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more