rp2040_pac/ppb/
nvic_ipr0.rs

1#[doc = "Register `NVIC_IPR0` reader"]
2pub type R = crate::R<NVIC_IPR0_SPEC>;
3#[doc = "Register `NVIC_IPR0` writer"]
4pub type W = crate::W<NVIC_IPR0_SPEC>;
5#[doc = "Field `IP_0` reader - Priority of interrupt 0"]
6pub type IP_0_R = crate::FieldReader;
7#[doc = "Field `IP_0` writer - Priority of interrupt 0"]
8pub type IP_0_W<'a, REG> = crate::FieldWriter<'a, REG, 2>;
9#[doc = "Field `IP_1` reader - Priority of interrupt 1"]
10pub type IP_1_R = crate::FieldReader;
11#[doc = "Field `IP_1` writer - Priority of interrupt 1"]
12pub type IP_1_W<'a, REG> = crate::FieldWriter<'a, REG, 2>;
13#[doc = "Field `IP_2` reader - Priority of interrupt 2"]
14pub type IP_2_R = crate::FieldReader;
15#[doc = "Field `IP_2` writer - Priority of interrupt 2"]
16pub type IP_2_W<'a, REG> = crate::FieldWriter<'a, REG, 2>;
17#[doc = "Field `IP_3` reader - Priority of interrupt 3"]
18pub type IP_3_R = crate::FieldReader;
19#[doc = "Field `IP_3` writer - Priority of interrupt 3"]
20pub type IP_3_W<'a, REG> = crate::FieldWriter<'a, REG, 2>;
21impl R {
22    #[doc = "Bits 6:7 - Priority of interrupt 0"]
23    #[inline(always)]
24    pub fn ip_0(&self) -> IP_0_R {
25        IP_0_R::new(((self.bits >> 6) & 3) as u8)
26    }
27    #[doc = "Bits 14:15 - Priority of interrupt 1"]
28    #[inline(always)]
29    pub fn ip_1(&self) -> IP_1_R {
30        IP_1_R::new(((self.bits >> 14) & 3) as u8)
31    }
32    #[doc = "Bits 22:23 - Priority of interrupt 2"]
33    #[inline(always)]
34    pub fn ip_2(&self) -> IP_2_R {
35        IP_2_R::new(((self.bits >> 22) & 3) as u8)
36    }
37    #[doc = "Bits 30:31 - Priority of interrupt 3"]
38    #[inline(always)]
39    pub fn ip_3(&self) -> IP_3_R {
40        IP_3_R::new(((self.bits >> 30) & 3) as u8)
41    }
42}
43impl W {
44    #[doc = "Bits 6:7 - Priority of interrupt 0"]
45    #[inline(always)]
46    #[must_use]
47    pub fn ip_0(&mut self) -> IP_0_W<NVIC_IPR0_SPEC> {
48        IP_0_W::new(self, 6)
49    }
50    #[doc = "Bits 14:15 - Priority of interrupt 1"]
51    #[inline(always)]
52    #[must_use]
53    pub fn ip_1(&mut self) -> IP_1_W<NVIC_IPR0_SPEC> {
54        IP_1_W::new(self, 14)
55    }
56    #[doc = "Bits 22:23 - Priority of interrupt 2"]
57    #[inline(always)]
58    #[must_use]
59    pub fn ip_2(&mut self) -> IP_2_W<NVIC_IPR0_SPEC> {
60        IP_2_W::new(self, 22)
61    }
62    #[doc = "Bits 30:31 - Priority of interrupt 3"]
63    #[inline(always)]
64    #[must_use]
65    pub fn ip_3(&mut self) -> IP_3_W<NVIC_IPR0_SPEC> {
66        IP_3_W::new(self, 30)
67    }
68    #[doc = r" Writes raw bits to the register."]
69    #[doc = r""]
70    #[doc = r" # Safety"]
71    #[doc = r""]
72    #[doc = r" Passing incorrect value can cause undefined behaviour. See reference manual"]
73    #[inline(always)]
74    pub unsafe fn bits(&mut self, bits: u32) -> &mut Self {
75        self.bits = bits;
76        self
77    }
78}
79#[doc = "Use the Interrupt Priority Registers to assign a priority from 0 to 3 to each of the available interrupts. 0 is the highest priority, and 3 is the lowest.  
80 Note: Writing 1 to an NVIC_ICPR bit does not affect the active state of the corresponding interrupt.  
81 These registers are only word-accessible  
82
83You can [`read`](crate::generic::Reg::read) this register and get [`nvic_ipr0::R`](R).  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`nvic_ipr0::W`](W). You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
84pub struct NVIC_IPR0_SPEC;
85impl crate::RegisterSpec for NVIC_IPR0_SPEC {
86    type Ux = u32;
87}
88#[doc = "`read()` method returns [`nvic_ipr0::R`](R) reader structure"]
89impl crate::Readable for NVIC_IPR0_SPEC {}
90#[doc = "`write(|w| ..)` method takes [`nvic_ipr0::W`](W) writer structure"]
91impl crate::Writable for NVIC_IPR0_SPEC {
92    const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0;
93    const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0;
94}
95#[doc = "`reset()` method sets NVIC_IPR0 to value 0"]
96impl crate::Resettable for NVIC_IPR0_SPEC {
97    const RESET_VALUE: u32 = 0;
98}