esp32c61 0.3.2

Peripheral access crate for the ESP32-C61
Documentation
#[doc = "Register `CACHE_L2_CACHE_ACS_FAIL_CTRL` reader"]
pub type R = crate::R<CACHE_L2_CACHE_ACS_FAIL_CTRL_SPEC>;
#[doc = "Field `CACHE_L2_CACHE_ACS_FAIL_CHECK_MODE` reader - The bit is used to configure l2 cache access fail check mode. 0: the access fail is not propagated to the request, 1: the access fail is propagated to the request"]
pub type CACHE_L2_CACHE_ACS_FAIL_CHECK_MODE_R = crate::BitReader;
impl R {
    #[doc = "Bit 0 - The bit is used to configure l2 cache access fail check mode. 0: the access fail is not propagated to the request, 1: the access fail is propagated to the request"]
    #[inline(always)]
    pub fn cache_l2_cache_acs_fail_check_mode(&self) -> CACHE_L2_CACHE_ACS_FAIL_CHECK_MODE_R {
        CACHE_L2_CACHE_ACS_FAIL_CHECK_MODE_R::new((self.bits & 1) != 0)
    }
}
#[cfg(feature = "impl-register-debug")]
impl core::fmt::Debug for R {
    fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
        f.debug_struct("CACHE_L2_CACHE_ACS_FAIL_CTRL")
            .field(
                "cache_l2_cache_acs_fail_check_mode",
                &self.cache_l2_cache_acs_fail_check_mode(),
            )
            .finish()
    }
}
#[doc = "Cache Access Fail Configuration register\n\nYou can [`read`](crate::Reg::read) this register and get [`cache_l2_cache_acs_fail_ctrl::R`](R). See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
pub struct CACHE_L2_CACHE_ACS_FAIL_CTRL_SPEC;
impl crate::RegisterSpec for CACHE_L2_CACHE_ACS_FAIL_CTRL_SPEC {
    type Ux = u32;
}
#[doc = "`read()` method returns [`cache_l2_cache_acs_fail_ctrl::R`](R) reader structure"]
impl crate::Readable for CACHE_L2_CACHE_ACS_FAIL_CTRL_SPEC {}
#[doc = "`reset()` method sets CACHE_L2_CACHE_ACS_FAIL_CTRL to value 0"]
impl crate::Resettable for CACHE_L2_CACHE_ACS_FAIL_CTRL_SPEC {}