esp32c3/sensitive/
apb_peripheral_access_0.rs1#[doc = "Register `APB_PERIPHERAL_ACCESS_0` reader"]
2pub type R = crate::R<APB_PERIPHERAL_ACCESS_0_SPEC>;
3#[doc = "Register `APB_PERIPHERAL_ACCESS_0` writer"]
4pub type W = crate::W<APB_PERIPHERAL_ACCESS_0_SPEC>;
5#[doc = "Field `APB_PERIPHERAL_ACCESS_LOCK` reader - apb_peripheral_access_lock"]
6pub type APB_PERIPHERAL_ACCESS_LOCK_R = crate::BitReader;
7#[doc = "Field `APB_PERIPHERAL_ACCESS_LOCK` writer - apb_peripheral_access_lock"]
8pub type APB_PERIPHERAL_ACCESS_LOCK_W<'a, REG> = crate::BitWriter<'a, REG>;
9impl R {
10 #[doc = "Bit 0 - apb_peripheral_access_lock"]
11 #[inline(always)]
12 pub fn apb_peripheral_access_lock(&self) -> APB_PERIPHERAL_ACCESS_LOCK_R {
13 APB_PERIPHERAL_ACCESS_LOCK_R::new((self.bits & 1) != 0)
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("APB_PERIPHERAL_ACCESS_0")
20 .field(
21 "apb_peripheral_access_lock",
22 &self.apb_peripheral_access_lock(),
23 )
24 .finish()
25 }
26}
27impl W {
28 #[doc = "Bit 0 - apb_peripheral_access_lock"]
29 #[inline(always)]
30 pub fn apb_peripheral_access_lock(
31 &mut self,
32 ) -> APB_PERIPHERAL_ACCESS_LOCK_W<APB_PERIPHERAL_ACCESS_0_SPEC> {
33 APB_PERIPHERAL_ACCESS_LOCK_W::new(self, 0)
34 }
35}
36#[doc = "SENSITIVE_APB_PERIPHERAL_ACCESS_0_REG\n\nYou can [`read`](crate::Reg::read) this register and get [`apb_peripheral_access_0::R`](R). You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`apb_peripheral_access_0::W`](W). You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
37pub struct APB_PERIPHERAL_ACCESS_0_SPEC;
38impl crate::RegisterSpec for APB_PERIPHERAL_ACCESS_0_SPEC {
39 type Ux = u32;
40}
41#[doc = "`read()` method returns [`apb_peripheral_access_0::R`](R) reader structure"]
42impl crate::Readable for APB_PERIPHERAL_ACCESS_0_SPEC {}
43#[doc = "`write(|w| ..)` method takes [`apb_peripheral_access_0::W`](W) writer structure"]
44impl crate::Writable for APB_PERIPHERAL_ACCESS_0_SPEC {
45 type Safety = crate::Unsafe;
46 const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0;
47 const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0;
48}
49#[doc = "`reset()` method sets APB_PERIPHERAL_ACCESS_0 to value 0"]
50impl crate::Resettable for APB_PERIPHERAL_ACCESS_0_SPEC {
51 const RESET_VALUE: u32 = 0;
52}