rp2040_pac/rtc/
irq_setup_1.rs

1#[doc = "Register `IRQ_SETUP_1` reader"]
2pub type R = crate::R<IRQ_SETUP_1_SPEC>;
3#[doc = "Register `IRQ_SETUP_1` writer"]
4pub type W = crate::W<IRQ_SETUP_1_SPEC>;
5#[doc = "Field `SEC` reader - Seconds"]
6pub type SEC_R = crate::FieldReader;
7#[doc = "Field `SEC` writer - Seconds"]
8pub type SEC_W<'a, REG> = crate::FieldWriter<'a, REG, 6>;
9#[doc = "Field `MIN` reader - Minutes"]
10pub type MIN_R = crate::FieldReader;
11#[doc = "Field `MIN` writer - Minutes"]
12pub type MIN_W<'a, REG> = crate::FieldWriter<'a, REG, 6>;
13#[doc = "Field `HOUR` reader - Hours"]
14pub type HOUR_R = crate::FieldReader;
15#[doc = "Field `HOUR` writer - Hours"]
16pub type HOUR_W<'a, REG> = crate::FieldWriter<'a, REG, 5>;
17#[doc = "Field `DOTW` reader - Day of the week"]
18pub type DOTW_R = crate::FieldReader;
19#[doc = "Field `DOTW` writer - Day of the week"]
20pub type DOTW_W<'a, REG> = crate::FieldWriter<'a, REG, 3>;
21#[doc = "Field `SEC_ENA` reader - Enable second matching"]
22pub type SEC_ENA_R = crate::BitReader;
23#[doc = "Field `SEC_ENA` writer - Enable second matching"]
24pub type SEC_ENA_W<'a, REG> = crate::BitWriter<'a, REG>;
25#[doc = "Field `MIN_ENA` reader - Enable minute matching"]
26pub type MIN_ENA_R = crate::BitReader;
27#[doc = "Field `MIN_ENA` writer - Enable minute matching"]
28pub type MIN_ENA_W<'a, REG> = crate::BitWriter<'a, REG>;
29#[doc = "Field `HOUR_ENA` reader - Enable hour matching"]
30pub type HOUR_ENA_R = crate::BitReader;
31#[doc = "Field `HOUR_ENA` writer - Enable hour matching"]
32pub type HOUR_ENA_W<'a, REG> = crate::BitWriter<'a, REG>;
33#[doc = "Field `DOTW_ENA` reader - Enable day of the week matching"]
34pub type DOTW_ENA_R = crate::BitReader;
35#[doc = "Field `DOTW_ENA` writer - Enable day of the week matching"]
36pub type DOTW_ENA_W<'a, REG> = crate::BitWriter<'a, REG>;
37impl R {
38    #[doc = "Bits 0:5 - Seconds"]
39    #[inline(always)]
40    pub fn sec(&self) -> SEC_R {
41        SEC_R::new((self.bits & 0x3f) as u8)
42    }
43    #[doc = "Bits 8:13 - Minutes"]
44    #[inline(always)]
45    pub fn min(&self) -> MIN_R {
46        MIN_R::new(((self.bits >> 8) & 0x3f) as u8)
47    }
48    #[doc = "Bits 16:20 - Hours"]
49    #[inline(always)]
50    pub fn hour(&self) -> HOUR_R {
51        HOUR_R::new(((self.bits >> 16) & 0x1f) as u8)
52    }
53    #[doc = "Bits 24:26 - Day of the week"]
54    #[inline(always)]
55    pub fn dotw(&self) -> DOTW_R {
56        DOTW_R::new(((self.bits >> 24) & 7) as u8)
57    }
58    #[doc = "Bit 28 - Enable second matching"]
59    #[inline(always)]
60    pub fn sec_ena(&self) -> SEC_ENA_R {
61        SEC_ENA_R::new(((self.bits >> 28) & 1) != 0)
62    }
63    #[doc = "Bit 29 - Enable minute matching"]
64    #[inline(always)]
65    pub fn min_ena(&self) -> MIN_ENA_R {
66        MIN_ENA_R::new(((self.bits >> 29) & 1) != 0)
67    }
68    #[doc = "Bit 30 - Enable hour matching"]
69    #[inline(always)]
70    pub fn hour_ena(&self) -> HOUR_ENA_R {
71        HOUR_ENA_R::new(((self.bits >> 30) & 1) != 0)
72    }
73    #[doc = "Bit 31 - Enable day of the week matching"]
74    #[inline(always)]
75    pub fn dotw_ena(&self) -> DOTW_ENA_R {
76        DOTW_ENA_R::new(((self.bits >> 31) & 1) != 0)
77    }
78}
79impl W {
80    #[doc = "Bits 0:5 - Seconds"]
81    #[inline(always)]
82    #[must_use]
83    pub fn sec(&mut self) -> SEC_W<IRQ_SETUP_1_SPEC> {
84        SEC_W::new(self, 0)
85    }
86    #[doc = "Bits 8:13 - Minutes"]
87    #[inline(always)]
88    #[must_use]
89    pub fn min(&mut self) -> MIN_W<IRQ_SETUP_1_SPEC> {
90        MIN_W::new(self, 8)
91    }
92    #[doc = "Bits 16:20 - Hours"]
93    #[inline(always)]
94    #[must_use]
95    pub fn hour(&mut self) -> HOUR_W<IRQ_SETUP_1_SPEC> {
96        HOUR_W::new(self, 16)
97    }
98    #[doc = "Bits 24:26 - Day of the week"]
99    #[inline(always)]
100    #[must_use]
101    pub fn dotw(&mut self) -> DOTW_W<IRQ_SETUP_1_SPEC> {
102        DOTW_W::new(self, 24)
103    }
104    #[doc = "Bit 28 - Enable second matching"]
105    #[inline(always)]
106    #[must_use]
107    pub fn sec_ena(&mut self) -> SEC_ENA_W<IRQ_SETUP_1_SPEC> {
108        SEC_ENA_W::new(self, 28)
109    }
110    #[doc = "Bit 29 - Enable minute matching"]
111    #[inline(always)]
112    #[must_use]
113    pub fn min_ena(&mut self) -> MIN_ENA_W<IRQ_SETUP_1_SPEC> {
114        MIN_ENA_W::new(self, 29)
115    }
116    #[doc = "Bit 30 - Enable hour matching"]
117    #[inline(always)]
118    #[must_use]
119    pub fn hour_ena(&mut self) -> HOUR_ENA_W<IRQ_SETUP_1_SPEC> {
120        HOUR_ENA_W::new(self, 30)
121    }
122    #[doc = "Bit 31 - Enable day of the week matching"]
123    #[inline(always)]
124    #[must_use]
125    pub fn dotw_ena(&mut self) -> DOTW_ENA_W<IRQ_SETUP_1_SPEC> {
126        DOTW_ENA_W::new(self, 31)
127    }
128    #[doc = r" Writes raw bits to the register."]
129    #[doc = r""]
130    #[doc = r" # Safety"]
131    #[doc = r""]
132    #[doc = r" Passing incorrect value can cause undefined behaviour. See reference manual"]
133    #[inline(always)]
134    pub unsafe fn bits(&mut self, bits: u32) -> &mut Self {
135        self.bits = bits;
136        self
137    }
138}
139#[doc = "Interrupt setup register 1  
140
141You can [`read`](crate::generic::Reg::read) this register and get [`irq_setup_1::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 [`irq_setup_1::W`](W). You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
142pub struct IRQ_SETUP_1_SPEC;
143impl crate::RegisterSpec for IRQ_SETUP_1_SPEC {
144    type Ux = u32;
145}
146#[doc = "`read()` method returns [`irq_setup_1::R`](R) reader structure"]
147impl crate::Readable for IRQ_SETUP_1_SPEC {}
148#[doc = "`write(|w| ..)` method takes [`irq_setup_1::W`](W) writer structure"]
149impl crate::Writable for IRQ_SETUP_1_SPEC {
150    const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0;
151    const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0;
152}
153#[doc = "`reset()` method sets IRQ_SETUP_1 to value 0"]
154impl crate::Resettable for IRQ_SETUP_1_SPEC {
155    const RESET_VALUE: u32 = 0;
156}