pub struct CFGRESET_SPEC;Expand description
Write 1 to reset all ACCESSCTRL configuration, except for the LOCK and FORCE_CORE_NS registers. This bit is used in the RP2350 bootrom to quickly restore ACCESSCTRL to a known state during the boot path. Note that, like all registers in ACCESSCTRL, this register is not writable when the writer’s corresponding LOCK bit is set, therefore a master which has been locked out of ACCESSCTRL can not use the CFGRESET register to disturb its contents.
You can read this register and get cfgreset::R. You can reset, write, write_with_zero this register using cfgreset::W. You can also modify this register. See API.
Trait Implementations§
Source§impl RegisterSpec for CFGRESET_SPEC
impl RegisterSpec for CFGRESET_SPEC
Source§impl Resettable for CFGRESET_SPEC
reset() method sets CFGRESET to value 0
impl Resettable for CFGRESET_SPEC
reset() method sets CFGRESET to value 0
Source§const RESET_VALUE: u32 = 0u32
const RESET_VALUE: u32 = 0u32
Source§fn reset_value() -> Self::Ux
fn reset_value() -> Self::Ux
Source§impl Writable for CFGRESET_SPEC
write(|w| ..) method takes cfgreset::W writer structure
impl Writable for CFGRESET_SPEC
write(|w| ..) method takes cfgreset::W writer structure
Source§const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0u32
const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0u32
1 and are changed if you pass 0Source§const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0u32
const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0u32
0 and are changed if you pass 1impl Readable for CFGRESET_SPEC
read() method returns cfgreset::R reader structure
Auto Trait Implementations§
impl Freeze for CFGRESET_SPEC
impl RefUnwindSafe for CFGRESET_SPEC
impl Send for CFGRESET_SPEC
impl Sync for CFGRESET_SPEC
impl Unpin for CFGRESET_SPEC
impl UnwindSafe for CFGRESET_SPEC
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
Source§impl<Choices> CoproductSubsetter<CNil, HNil> for Choices
impl<Choices> CoproductSubsetter<CNil, HNil> for Choices
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more