efm32pg1b200_pac/prs/
peek.rs1#[doc = "Register `PEEK` reader"]
2pub struct R(crate::R<PEEK_SPEC>);
3impl core::ops::Deref for R {
4 type Target = crate::R<PEEK_SPEC>;
5 #[inline(always)]
6 fn deref(&self) -> &Self::Target {
7 &self.0
8 }
9}
10impl From<crate::R<PEEK_SPEC>> for R {
11 #[inline(always)]
12 fn from(reader: crate::R<PEEK_SPEC>) -> Self {
13 R(reader)
14 }
15}
16#[doc = "Field `CH0VAL` reader - Channel 0 Current Value"]
17pub type CH0VAL_R = crate::BitReader<bool>;
18#[doc = "Field `CH1VAL` reader - Channel 1 Current Value"]
19pub type CH1VAL_R = crate::BitReader<bool>;
20#[doc = "Field `CH2VAL` reader - Channel 2 Current Value"]
21pub type CH2VAL_R = crate::BitReader<bool>;
22#[doc = "Field `CH3VAL` reader - Channel 3 Current Value"]
23pub type CH3VAL_R = crate::BitReader<bool>;
24#[doc = "Field `CH4VAL` reader - Channel 4 Current Value"]
25pub type CH4VAL_R = crate::BitReader<bool>;
26#[doc = "Field `CH5VAL` reader - Channel 5 Current Value"]
27pub type CH5VAL_R = crate::BitReader<bool>;
28#[doc = "Field `CH6VAL` reader - Channel 6 Current Value"]
29pub type CH6VAL_R = crate::BitReader<bool>;
30#[doc = "Field `CH7VAL` reader - Channel 7 Current Value"]
31pub type CH7VAL_R = crate::BitReader<bool>;
32#[doc = "Field `CH8VAL` reader - Channel 8 Current Value"]
33pub type CH8VAL_R = crate::BitReader<bool>;
34#[doc = "Field `CH9VAL` reader - Channel 9 Current Value"]
35pub type CH9VAL_R = crate::BitReader<bool>;
36#[doc = "Field `CH10VAL` reader - Channel 10 Current Value"]
37pub type CH10VAL_R = crate::BitReader<bool>;
38#[doc = "Field `CH11VAL` reader - Channel 11 Current Value"]
39pub type CH11VAL_R = crate::BitReader<bool>;
40impl R {
41 #[doc = "Bit 0 - Channel 0 Current Value"]
42 #[inline(always)]
43 pub fn ch0val(&self) -> CH0VAL_R {
44 CH0VAL_R::new((self.bits & 1) != 0)
45 }
46 #[doc = "Bit 1 - Channel 1 Current Value"]
47 #[inline(always)]
48 pub fn ch1val(&self) -> CH1VAL_R {
49 CH1VAL_R::new(((self.bits >> 1) & 1) != 0)
50 }
51 #[doc = "Bit 2 - Channel 2 Current Value"]
52 #[inline(always)]
53 pub fn ch2val(&self) -> CH2VAL_R {
54 CH2VAL_R::new(((self.bits >> 2) & 1) != 0)
55 }
56 #[doc = "Bit 3 - Channel 3 Current Value"]
57 #[inline(always)]
58 pub fn ch3val(&self) -> CH3VAL_R {
59 CH3VAL_R::new(((self.bits >> 3) & 1) != 0)
60 }
61 #[doc = "Bit 4 - Channel 4 Current Value"]
62 #[inline(always)]
63 pub fn ch4val(&self) -> CH4VAL_R {
64 CH4VAL_R::new(((self.bits >> 4) & 1) != 0)
65 }
66 #[doc = "Bit 5 - Channel 5 Current Value"]
67 #[inline(always)]
68 pub fn ch5val(&self) -> CH5VAL_R {
69 CH5VAL_R::new(((self.bits >> 5) & 1) != 0)
70 }
71 #[doc = "Bit 6 - Channel 6 Current Value"]
72 #[inline(always)]
73 pub fn ch6val(&self) -> CH6VAL_R {
74 CH6VAL_R::new(((self.bits >> 6) & 1) != 0)
75 }
76 #[doc = "Bit 7 - Channel 7 Current Value"]
77 #[inline(always)]
78 pub fn ch7val(&self) -> CH7VAL_R {
79 CH7VAL_R::new(((self.bits >> 7) & 1) != 0)
80 }
81 #[doc = "Bit 8 - Channel 8 Current Value"]
82 #[inline(always)]
83 pub fn ch8val(&self) -> CH8VAL_R {
84 CH8VAL_R::new(((self.bits >> 8) & 1) != 0)
85 }
86 #[doc = "Bit 9 - Channel 9 Current Value"]
87 #[inline(always)]
88 pub fn ch9val(&self) -> CH9VAL_R {
89 CH9VAL_R::new(((self.bits >> 9) & 1) != 0)
90 }
91 #[doc = "Bit 10 - Channel 10 Current Value"]
92 #[inline(always)]
93 pub fn ch10val(&self) -> CH10VAL_R {
94 CH10VAL_R::new(((self.bits >> 10) & 1) != 0)
95 }
96 #[doc = "Bit 11 - Channel 11 Current Value"]
97 #[inline(always)]
98 pub fn ch11val(&self) -> CH11VAL_R {
99 CH11VAL_R::new(((self.bits >> 11) & 1) != 0)
100 }
101}
102#[doc = "PRS Channel Values\n\nThis register you can [`read`](crate::generic::Reg::read). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [peek](index.html) module"]
103pub struct PEEK_SPEC;
104impl crate::RegisterSpec for PEEK_SPEC {
105 type Ux = u32;
106}
107#[doc = "`read()` method returns [peek::R](R) reader structure"]
108impl crate::Readable for PEEK_SPEC {
109 type Reader = R;
110}
111#[doc = "`reset()` method sets PEEK to value 0"]
112impl crate::Resettable for PEEK_SPEC {
113 #[inline(always)]
114 fn reset_value() -> Self::Ux {
115 0
116 }
117}