Struct esp32c3_hal::pac::extmem::icache_autoload_ctrl::R
pub struct R(_);
Expand description
Register ICACHE_AUTOLOAD_CTRL
reader
Implementations
impl R
impl R
pub fn icache_autoload_sct0_ena(&self) -> BitReaderRaw<bool>
pub fn icache_autoload_sct0_ena(&self) -> BitReaderRaw<bool>
Bit 0 - The bits are used to enable the first section for autoload operation.
pub fn icache_autoload_sct1_ena(&self) -> BitReaderRaw<bool>
pub fn icache_autoload_sct1_ena(&self) -> BitReaderRaw<bool>
Bit 1 - The bits are used to enable the second section for autoload operation.
pub fn icache_autoload_ena(&self) -> BitReaderRaw<bool>
pub fn icache_autoload_ena(&self) -> BitReaderRaw<bool>
Bit 2 - The bit is used to enable and disable autoload operation. It is combined with icache_autoload_done. 1: enable, 0: disable.
pub fn icache_autoload_done(&self) -> BitReaderRaw<bool>
pub fn icache_autoload_done(&self) -> BitReaderRaw<bool>
Bit 3 - The bit is used to indicate autoload operation is finished.
pub fn icache_autoload_order(&self) -> BitReaderRaw<bool>
pub fn icache_autoload_order(&self) -> BitReaderRaw<bool>
Bit 4 - The bits are used to configure the direction of autoload. 1: descending, 0: ascending.
pub fn icache_autoload_rqst(&self) -> FieldReaderRaw<u8, u8>
pub fn icache_autoload_rqst(&self) -> FieldReaderRaw<u8, u8>
Bits 5:6 - The bits are used to configure trigger conditions for autoload. 0/3: cache miss, 1: cache hit, 2: both cache miss and hit.
Methods from Deref<Target = R<ICACHE_AUTOLOAD_CTRL_SPEC>>
pub fn bits(&self) -> <REG as RegisterSpec>::Ux
pub fn bits(&self) -> <REG as RegisterSpec>::Ux
Reads raw bits from register.
Trait Implementations
impl From<R<ICACHE_AUTOLOAD_CTRL_SPEC>> for R
impl From<R<ICACHE_AUTOLOAD_CTRL_SPEC>> for R
fn from(reader: R<ICACHE_AUTOLOAD_CTRL_SPEC>) -> R
fn from(reader: R<ICACHE_AUTOLOAD_CTRL_SPEC>) -> R
Converts to this type from the input type.
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