nrf52840_pac/qdec/psel/
a.rs
1#[doc = "Register `A` reader"]
2pub struct R(crate::R<A_SPEC>);
3impl core::ops::Deref for R {
4 type Target = crate::R<A_SPEC>;
5 #[inline(always)]
6 fn deref(&self) -> &Self::Target {
7 &self.0
8 }
9}
10impl From<crate::R<A_SPEC>> for R {
11 #[inline(always)]
12 fn from(reader: crate::R<A_SPEC>) -> Self {
13 R(reader)
14 }
15}
16#[doc = "Register `A` writer"]
17pub struct W(crate::W<A_SPEC>);
18impl core::ops::Deref for W {
19 type Target = crate::W<A_SPEC>;
20 #[inline(always)]
21 fn deref(&self) -> &Self::Target {
22 &self.0
23 }
24}
25impl core::ops::DerefMut for W {
26 #[inline(always)]
27 fn deref_mut(&mut self) -> &mut Self::Target {
28 &mut self.0
29 }
30}
31impl From<crate::W<A_SPEC>> for W {
32 #[inline(always)]
33 fn from(writer: crate::W<A_SPEC>) -> Self {
34 W(writer)
35 }
36}
37#[doc = "Field `PIN` reader - Pin number"]
38pub type PIN_R = crate::FieldReader<u8, u8>;
39#[doc = "Field `PIN` writer - Pin number"]
40pub type PIN_W<'a, const O: u8> = crate::FieldWriter<'a, u32, A_SPEC, u8, u8, 5, O>;
41#[doc = "Field `PORT` reader - Port number"]
42pub type PORT_R = crate::BitReader<bool>;
43#[doc = "Field `PORT` writer - Port number"]
44pub type PORT_W<'a, const O: u8> = crate::BitWriter<'a, u32, A_SPEC, bool, O>;
45#[doc = "Field `CONNECT` reader - Connection"]
46pub type CONNECT_R = crate::BitReader<CONNECT_A>;
47#[doc = "Connection\n\nValue on reset: 1"]
48#[derive(Clone, Copy, Debug, PartialEq)]
49pub enum CONNECT_A {
50 #[doc = "1: Disconnect"]
51 DISCONNECTED = 1,
52 #[doc = "0: Connect"]
53 CONNECTED = 0,
54}
55impl From<CONNECT_A> for bool {
56 #[inline(always)]
57 fn from(variant: CONNECT_A) -> Self {
58 variant as u8 != 0
59 }
60}
61impl CONNECT_R {
62 #[doc = "Get enumerated values variant"]
63 #[inline(always)]
64 pub fn variant(&self) -> CONNECT_A {
65 match self.bits {
66 true => CONNECT_A::DISCONNECTED,
67 false => CONNECT_A::CONNECTED,
68 }
69 }
70 #[doc = "Checks if the value of the field is `DISCONNECTED`"]
71 #[inline(always)]
72 pub fn is_disconnected(&self) -> bool {
73 *self == CONNECT_A::DISCONNECTED
74 }
75 #[doc = "Checks if the value of the field is `CONNECTED`"]
76 #[inline(always)]
77 pub fn is_connected(&self) -> bool {
78 *self == CONNECT_A::CONNECTED
79 }
80}
81#[doc = "Field `CONNECT` writer - Connection"]
82pub type CONNECT_W<'a, const O: u8> = crate::BitWriter<'a, u32, A_SPEC, CONNECT_A, O>;
83impl<'a, const O: u8> CONNECT_W<'a, O> {
84 #[doc = "Disconnect"]
85 #[inline(always)]
86 pub fn disconnected(self) -> &'a mut W {
87 self.variant(CONNECT_A::DISCONNECTED)
88 }
89 #[doc = "Connect"]
90 #[inline(always)]
91 pub fn connected(self) -> &'a mut W {
92 self.variant(CONNECT_A::CONNECTED)
93 }
94}
95impl R {
96 #[doc = "Bits 0:4 - Pin number"]
97 #[inline(always)]
98 pub fn pin(&self) -> PIN_R {
99 PIN_R::new((self.bits & 0x1f) as u8)
100 }
101 #[doc = "Bit 5 - Port number"]
102 #[inline(always)]
103 pub fn port(&self) -> PORT_R {
104 PORT_R::new(((self.bits >> 5) & 1) != 0)
105 }
106 #[doc = "Bit 31 - Connection"]
107 #[inline(always)]
108 pub fn connect(&self) -> CONNECT_R {
109 CONNECT_R::new(((self.bits >> 31) & 1) != 0)
110 }
111}
112impl W {
113 #[doc = "Bits 0:4 - Pin number"]
114 #[inline(always)]
115 pub fn pin(&mut self) -> PIN_W<0> {
116 PIN_W::new(self)
117 }
118 #[doc = "Bit 5 - Port number"]
119 #[inline(always)]
120 pub fn port(&mut self) -> PORT_W<5> {
121 PORT_W::new(self)
122 }
123 #[doc = "Bit 31 - Connection"]
124 #[inline(always)]
125 pub fn connect(&mut self) -> CONNECT_W<31> {
126 CONNECT_W::new(self)
127 }
128 #[doc = "Writes raw bits to the register."]
129 #[inline(always)]
130 pub unsafe fn bits(&mut self, bits: u32) -> &mut Self {
131 self.0.bits(bits);
132 self
133 }
134}
135#[doc = "Pin select for A signal\n\nThis register you can [`read`](crate::generic::Reg::read), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [a](index.html) module"]
136pub struct A_SPEC;
137impl crate::RegisterSpec for A_SPEC {
138 type Ux = u32;
139}
140#[doc = "`read()` method returns [a::R](R) reader structure"]
141impl crate::Readable for A_SPEC {
142 type Reader = R;
143}
144#[doc = "`write(|w| ..)` method takes [a::W](W) writer structure"]
145impl crate::Writable for A_SPEC {
146 type Writer = W;
147}
148#[doc = "`reset()` method sets A to value 0xffff_ffff"]
149impl crate::Resettable for A_SPEC {
150 #[inline(always)]
151 fn reset_value() -> Self::Ux {
152 0xffff_ffff
153 }
154}