rp2040_pac/pwm/
ints.rs

1#[doc = "Register `INTS` reader"]
2pub type R = crate::R<INTS_SPEC>;
3#[doc = "Field `CH0` reader - "]
4pub type CH0_R = crate::BitReader;
5#[doc = "Field `CH1` reader - "]
6pub type CH1_R = crate::BitReader;
7#[doc = "Field `CH2` reader - "]
8pub type CH2_R = crate::BitReader;
9#[doc = "Field `CH3` reader - "]
10pub type CH3_R = crate::BitReader;
11#[doc = "Field `CH4` reader - "]
12pub type CH4_R = crate::BitReader;
13#[doc = "Field `CH5` reader - "]
14pub type CH5_R = crate::BitReader;
15#[doc = "Field `CH6` reader - "]
16pub type CH6_R = crate::BitReader;
17#[doc = "Field `CH7` reader - "]
18pub type CH7_R = crate::BitReader;
19impl R {
20    #[doc = "Bit 0"]
21    #[inline(always)]
22    pub fn ch0(&self) -> CH0_R {
23        CH0_R::new((self.bits & 1) != 0)
24    }
25    #[doc = "Bit 1"]
26    #[inline(always)]
27    pub fn ch1(&self) -> CH1_R {
28        CH1_R::new(((self.bits >> 1) & 1) != 0)
29    }
30    #[doc = "Bit 2"]
31    #[inline(always)]
32    pub fn ch2(&self) -> CH2_R {
33        CH2_R::new(((self.bits >> 2) & 1) != 0)
34    }
35    #[doc = "Bit 3"]
36    #[inline(always)]
37    pub fn ch3(&self) -> CH3_R {
38        CH3_R::new(((self.bits >> 3) & 1) != 0)
39    }
40    #[doc = "Bit 4"]
41    #[inline(always)]
42    pub fn ch4(&self) -> CH4_R {
43        CH4_R::new(((self.bits >> 4) & 1) != 0)
44    }
45    #[doc = "Bit 5"]
46    #[inline(always)]
47    pub fn ch5(&self) -> CH5_R {
48        CH5_R::new(((self.bits >> 5) & 1) != 0)
49    }
50    #[doc = "Bit 6"]
51    #[inline(always)]
52    pub fn ch6(&self) -> CH6_R {
53        CH6_R::new(((self.bits >> 6) & 1) != 0)
54    }
55    #[doc = "Bit 7"]
56    #[inline(always)]
57    pub fn ch7(&self) -> CH7_R {
58        CH7_R::new(((self.bits >> 7) & 1) != 0)
59    }
60}
61#[doc = "Interrupt status after masking &amp; forcing  
62
63You can [`read`](crate::generic::Reg::read) this register and get [`ints::R`](R).  See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
64pub struct INTS_SPEC;
65impl crate::RegisterSpec for INTS_SPEC {
66    type Ux = u32;
67}
68#[doc = "`read()` method returns [`ints::R`](R) reader structure"]
69impl crate::Readable for INTS_SPEC {}
70#[doc = "`reset()` method sets INTS to value 0"]
71impl crate::Resettable for INTS_SPEC {
72    const RESET_VALUE: u32 = 0;
73}