esp32/dport/
ahblite_mpu_table_bt_buffer.rs

1#[doc = "Register `AHBLITE_MPU_TABLE_BT_BUFFER` reader"]
2pub type R = crate::R<AHBLITE_MPU_TABLE_BT_BUFFER_SPEC>;
3#[doc = "Register `AHBLITE_MPU_TABLE_BT_BUFFER` writer"]
4pub type W = crate::W<AHBLITE_MPU_TABLE_BT_BUFFER_SPEC>;
5#[doc = "Field `BTBUFFER_ACCESS_GRANT_CONFIG` reader - "]
6pub type BTBUFFER_ACCESS_GRANT_CONFIG_R = crate::FieldReader;
7#[doc = "Field `BTBUFFER_ACCESS_GRANT_CONFIG` writer - "]
8pub type BTBUFFER_ACCESS_GRANT_CONFIG_W<'a, REG> = crate::FieldWriter<'a, REG, 6>;
9impl R {
10    #[doc = "Bits 0:5"]
11    #[inline(always)]
12    pub fn btbuffer_access_grant_config(&self) -> BTBUFFER_ACCESS_GRANT_CONFIG_R {
13        BTBUFFER_ACCESS_GRANT_CONFIG_R::new((self.bits & 0x3f) as u8)
14    }
15}
16#[cfg(feature = "impl-register-debug")]
17impl core::fmt::Debug for R {
18    fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
19        f.debug_struct("AHBLITE_MPU_TABLE_BT_BUFFER")
20            .field(
21                "btbuffer_access_grant_config",
22                &self.btbuffer_access_grant_config(),
23            )
24            .finish()
25    }
26}
27impl W {
28    #[doc = "Bits 0:5"]
29    #[inline(always)]
30    pub fn btbuffer_access_grant_config(
31        &mut self,
32    ) -> BTBUFFER_ACCESS_GRANT_CONFIG_W<AHBLITE_MPU_TABLE_BT_BUFFER_SPEC> {
33        BTBUFFER_ACCESS_GRANT_CONFIG_W::new(self, 0)
34    }
35}
36#[doc = "\n\nYou can [`read`](crate::Reg::read) this register and get [`ahblite_mpu_table_bt_buffer::R`](R). You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`ahblite_mpu_table_bt_buffer::W`](W). You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
37pub struct AHBLITE_MPU_TABLE_BT_BUFFER_SPEC;
38impl crate::RegisterSpec for AHBLITE_MPU_TABLE_BT_BUFFER_SPEC {
39    type Ux = u32;
40}
41#[doc = "`read()` method returns [`ahblite_mpu_table_bt_buffer::R`](R) reader structure"]
42impl crate::Readable for AHBLITE_MPU_TABLE_BT_BUFFER_SPEC {}
43#[doc = "`write(|w| ..)` method takes [`ahblite_mpu_table_bt_buffer::W`](W) writer structure"]
44impl crate::Writable for AHBLITE_MPU_TABLE_BT_BUFFER_SPEC {
45    type Safety = crate::Unsafe;
46}
47#[doc = "`reset()` method sets AHBLITE_MPU_TABLE_BT_BUFFER to value 0"]
48impl crate::Resettable for AHBLITE_MPU_TABLE_BT_BUFFER_SPEC {}