esp32/dport/
app_cpu_intr_from_cpu_1_map.rs

1#[doc = "Register `APP_CPU_INTR_FROM_CPU_1_MAP` reader"]
2pub type R = crate::R<APP_CPU_INTR_FROM_CPU_1_MAP_SPEC>;
3#[doc = "Register `APP_CPU_INTR_FROM_CPU_1_MAP` writer"]
4pub type W = crate::W<APP_CPU_INTR_FROM_CPU_1_MAP_SPEC>;
5#[doc = "Field `APP_CPU_INTR_FROM_CPU_1_MAP` reader - "]
6pub type APP_CPU_INTR_FROM_CPU_1_MAP_R = crate::FieldReader;
7#[doc = "Field `APP_CPU_INTR_FROM_CPU_1_MAP` writer - "]
8pub type APP_CPU_INTR_FROM_CPU_1_MAP_W<'a, REG> = crate::FieldWriter<'a, REG, 5>;
9impl R {
10    #[doc = "Bits 0:4"]
11    #[inline(always)]
12    pub fn app_cpu_intr_from_cpu_1_map(&self) -> APP_CPU_INTR_FROM_CPU_1_MAP_R {
13        APP_CPU_INTR_FROM_CPU_1_MAP_R::new((self.bits & 0x1f) 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("APP_CPU_INTR_FROM_CPU_1_MAP")
20            .field(
21                "app_cpu_intr_from_cpu_1_map",
22                &self.app_cpu_intr_from_cpu_1_map(),
23            )
24            .finish()
25    }
26}
27impl W {
28    #[doc = "Bits 0:4"]
29    #[inline(always)]
30    pub fn app_cpu_intr_from_cpu_1_map(
31        &mut self,
32    ) -> APP_CPU_INTR_FROM_CPU_1_MAP_W<APP_CPU_INTR_FROM_CPU_1_MAP_SPEC> {
33        APP_CPU_INTR_FROM_CPU_1_MAP_W::new(self, 0)
34    }
35}
36#[doc = "\n\nYou can [`read`](crate::Reg::read) this register and get [`app_cpu_intr_from_cpu_1_map::R`](R). You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`app_cpu_intr_from_cpu_1_map::W`](W). You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
37pub struct APP_CPU_INTR_FROM_CPU_1_MAP_SPEC;
38impl crate::RegisterSpec for APP_CPU_INTR_FROM_CPU_1_MAP_SPEC {
39    type Ux = u32;
40}
41#[doc = "`read()` method returns [`app_cpu_intr_from_cpu_1_map::R`](R) reader structure"]
42impl crate::Readable for APP_CPU_INTR_FROM_CPU_1_MAP_SPEC {}
43#[doc = "`write(|w| ..)` method takes [`app_cpu_intr_from_cpu_1_map::W`](W) writer structure"]
44impl crate::Writable for APP_CPU_INTR_FROM_CPU_1_MAP_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 APP_CPU_INTR_FROM_CPU_1_MAP to value 0x10"]
50impl crate::Resettable for APP_CPU_INTR_FROM_CPU_1_MAP_SPEC {
51    const RESET_VALUE: u32 = 0x10;
52}