esp32 0.40.2

Peripheral access crate for the ESP32
Documentation
#[doc = "Register `AHB_MPU_TABLE_0` reader"]
pub type R = crate::R<AHB_MPU_TABLE_0_SPEC>;
#[doc = "Register `AHB_MPU_TABLE_0` writer"]
pub type W = crate::W<AHB_MPU_TABLE_0_SPEC>;
#[doc = "Field `AHB_ACCESS_GRANT_0` reader - "]
pub type AHB_ACCESS_GRANT_0_R = crate::FieldReader<u32>;
#[doc = "Field `AHB_ACCESS_GRANT_0` writer - "]
pub type AHB_ACCESS_GRANT_0_W<'a, REG> = crate::FieldWriter<'a, REG, 32, u32>;
impl R {
    #[doc = "Bits 0:31"]
    #[inline(always)]
    pub fn ahb_access_grant_0(&self) -> AHB_ACCESS_GRANT_0_R {
        AHB_ACCESS_GRANT_0_R::new(self.bits)
    }
}
#[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("AHB_MPU_TABLE_0")
            .field("ahb_access_grant_0", &self.ahb_access_grant_0())
            .finish()
    }
}
impl W {
    #[doc = "Bits 0:31"]
    #[inline(always)]
    pub fn ahb_access_grant_0(&mut self) -> AHB_ACCESS_GRANT_0_W<'_, AHB_MPU_TABLE_0_SPEC> {
        AHB_ACCESS_GRANT_0_W::new(self, 0)
    }
}
#[doc = "\n\nYou can [`read`](crate::Reg::read) this register and get [`ahb_mpu_table_0::R`](R). You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`ahb_mpu_table_0::W`](W). You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
pub struct AHB_MPU_TABLE_0_SPEC;
impl crate::RegisterSpec for AHB_MPU_TABLE_0_SPEC {
    type Ux = u32;
}
#[doc = "`read()` method returns [`ahb_mpu_table_0::R`](R) reader structure"]
impl crate::Readable for AHB_MPU_TABLE_0_SPEC {}
#[doc = "`write(|w| ..)` method takes [`ahb_mpu_table_0::W`](W) writer structure"]
impl crate::Writable for AHB_MPU_TABLE_0_SPEC {
    type Safety = crate::Unsafe;
}
#[doc = "`reset()` method sets AHB_MPU_TABLE_0 to value 0xffff_ffff"]
impl crate::Resettable for AHB_MPU_TABLE_0_SPEC {
    const RESET_VALUE: u32 = 0xffff_ffff;
}