efm32gg11b310_pac/ebi/
ien.rs

1#[doc = "Register `IEN` reader"]
2pub struct R(crate::R<IEN_SPEC>);
3impl core::ops::Deref for R {
4    type Target = crate::R<IEN_SPEC>;
5    #[inline(always)]
6    fn deref(&self) -> &Self::Target {
7        &self.0
8    }
9}
10impl From<crate::R<IEN_SPEC>> for R {
11    #[inline(always)]
12    fn from(reader: crate::R<IEN_SPEC>) -> Self {
13        R(reader)
14    }
15}
16#[doc = "Register `IEN` writer"]
17pub struct W(crate::W<IEN_SPEC>);
18impl core::ops::Deref for W {
19    type Target = crate::W<IEN_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<IEN_SPEC>> for W {
32    #[inline(always)]
33    fn from(writer: crate::W<IEN_SPEC>) -> Self {
34        W(writer)
35    }
36}
37#[doc = "Field `VSYNC` reader - Vertical Sync Interrupt Enable"]
38pub type VSYNC_R = crate::BitReader<bool>;
39#[doc = "Field `VSYNC` writer - Vertical Sync Interrupt Enable"]
40pub type VSYNC_W<'a> = crate::BitWriter<'a, u32, IEN_SPEC, bool, 0>;
41#[doc = "Field `HSYNC` reader - Horizontal Sync Interrupt Enable"]
42pub type HSYNC_R = crate::BitReader<bool>;
43#[doc = "Field `HSYNC` writer - Horizontal Sync Interrupt Enable"]
44pub type HSYNC_W<'a> = crate::BitWriter<'a, u32, IEN_SPEC, bool, 1>;
45#[doc = "Field `VBPORCH` reader - Vertical Back Porch Interrupt Enable"]
46pub type VBPORCH_R = crate::BitReader<bool>;
47#[doc = "Field `VBPORCH` writer - Vertical Back Porch Interrupt Enable"]
48pub type VBPORCH_W<'a> = crate::BitWriter<'a, u32, IEN_SPEC, bool, 2>;
49#[doc = "Field `VFPORCH` reader - Vertical Front Porch Interrupt Enable"]
50pub type VFPORCH_R = crate::BitReader<bool>;
51#[doc = "Field `VFPORCH` writer - Vertical Front Porch Interrupt Enable"]
52pub type VFPORCH_W<'a> = crate::BitWriter<'a, u32, IEN_SPEC, bool, 3>;
53#[doc = "Field `DDEMPTY` reader - Direct Drive Data Empty Interrupt Enable"]
54pub type DDEMPTY_R = crate::BitReader<bool>;
55#[doc = "Field `DDEMPTY` writer - Direct Drive Data Empty Interrupt Enable"]
56pub type DDEMPTY_W<'a> = crate::BitWriter<'a, u32, IEN_SPEC, bool, 4>;
57#[doc = "Field `DDJIT` reader - Direct Drive Jitter Interrupt Enable"]
58pub type DDJIT_R = crate::BitReader<bool>;
59#[doc = "Field `DDJIT` writer - Direct Drive Jitter Interrupt Enable"]
60pub type DDJIT_W<'a> = crate::BitWriter<'a, u32, IEN_SPEC, bool, 5>;
61#[doc = "Field `TFTPIXEL0EMPTY` reader - EBI_TFTPIXEL0 Empty Interrupt Enable"]
62pub type TFTPIXEL0EMPTY_R = crate::BitReader<bool>;
63#[doc = "Field `TFTPIXEL0EMPTY` writer - EBI_TFTPIXEL0 Empty Interrupt Enable"]
64pub type TFTPIXEL0EMPTY_W<'a> = crate::BitWriter<'a, u32, IEN_SPEC, bool, 6>;
65#[doc = "Field `TFTPIXEL1EMPTY` reader - EBI_TFTPIXEL1 Empty Interrupt Enable"]
66pub type TFTPIXEL1EMPTY_R = crate::BitReader<bool>;
67#[doc = "Field `TFTPIXEL1EMPTY` writer - EBI_TFTPIXEL1 Empty Interrupt Enable"]
68pub type TFTPIXEL1EMPTY_W<'a> = crate::BitWriter<'a, u32, IEN_SPEC, bool, 7>;
69#[doc = "Field `TFTPIXELFULL` reader - EBI_TFTPIXEL Full Interrupt Enable"]
70pub type TFTPIXELFULL_R = crate::BitReader<bool>;
71#[doc = "Field `TFTPIXELFULL` writer - EBI_TFTPIXEL Full Interrupt Enable"]
72pub type TFTPIXELFULL_W<'a> = crate::BitWriter<'a, u32, IEN_SPEC, bool, 8>;
73#[doc = "Field `TFTPIXELOF` reader - EBI_TFTPIXEL Overflow Interrupt Enable"]
74pub type TFTPIXELOF_R = crate::BitReader<bool>;
75#[doc = "Field `TFTPIXELOF` writer - EBI_TFTPIXEL Overflow Interrupt Enable"]
76pub type TFTPIXELOF_W<'a> = crate::BitWriter<'a, u32, IEN_SPEC, bool, 9>;
77impl R {
78    #[doc = "Bit 0 - Vertical Sync Interrupt Enable"]
79    #[inline(always)]
80    pub fn vsync(&self) -> VSYNC_R {
81        VSYNC_R::new((self.bits & 1) != 0)
82    }
83    #[doc = "Bit 1 - Horizontal Sync Interrupt Enable"]
84    #[inline(always)]
85    pub fn hsync(&self) -> HSYNC_R {
86        HSYNC_R::new(((self.bits >> 1) & 1) != 0)
87    }
88    #[doc = "Bit 2 - Vertical Back Porch Interrupt Enable"]
89    #[inline(always)]
90    pub fn vbporch(&self) -> VBPORCH_R {
91        VBPORCH_R::new(((self.bits >> 2) & 1) != 0)
92    }
93    #[doc = "Bit 3 - Vertical Front Porch Interrupt Enable"]
94    #[inline(always)]
95    pub fn vfporch(&self) -> VFPORCH_R {
96        VFPORCH_R::new(((self.bits >> 3) & 1) != 0)
97    }
98    #[doc = "Bit 4 - Direct Drive Data Empty Interrupt Enable"]
99    #[inline(always)]
100    pub fn ddempty(&self) -> DDEMPTY_R {
101        DDEMPTY_R::new(((self.bits >> 4) & 1) != 0)
102    }
103    #[doc = "Bit 5 - Direct Drive Jitter Interrupt Enable"]
104    #[inline(always)]
105    pub fn ddjit(&self) -> DDJIT_R {
106        DDJIT_R::new(((self.bits >> 5) & 1) != 0)
107    }
108    #[doc = "Bit 6 - EBI_TFTPIXEL0 Empty Interrupt Enable"]
109    #[inline(always)]
110    pub fn tftpixel0empty(&self) -> TFTPIXEL0EMPTY_R {
111        TFTPIXEL0EMPTY_R::new(((self.bits >> 6) & 1) != 0)
112    }
113    #[doc = "Bit 7 - EBI_TFTPIXEL1 Empty Interrupt Enable"]
114    #[inline(always)]
115    pub fn tftpixel1empty(&self) -> TFTPIXEL1EMPTY_R {
116        TFTPIXEL1EMPTY_R::new(((self.bits >> 7) & 1) != 0)
117    }
118    #[doc = "Bit 8 - EBI_TFTPIXEL Full Interrupt Enable"]
119    #[inline(always)]
120    pub fn tftpixelfull(&self) -> TFTPIXELFULL_R {
121        TFTPIXELFULL_R::new(((self.bits >> 8) & 1) != 0)
122    }
123    #[doc = "Bit 9 - EBI_TFTPIXEL Overflow Interrupt Enable"]
124    #[inline(always)]
125    pub fn tftpixelof(&self) -> TFTPIXELOF_R {
126        TFTPIXELOF_R::new(((self.bits >> 9) & 1) != 0)
127    }
128}
129impl W {
130    #[doc = "Bit 0 - Vertical Sync Interrupt Enable"]
131    #[inline(always)]
132    pub fn vsync(&mut self) -> VSYNC_W {
133        VSYNC_W::new(self)
134    }
135    #[doc = "Bit 1 - Horizontal Sync Interrupt Enable"]
136    #[inline(always)]
137    pub fn hsync(&mut self) -> HSYNC_W {
138        HSYNC_W::new(self)
139    }
140    #[doc = "Bit 2 - Vertical Back Porch Interrupt Enable"]
141    #[inline(always)]
142    pub fn vbporch(&mut self) -> VBPORCH_W {
143        VBPORCH_W::new(self)
144    }
145    #[doc = "Bit 3 - Vertical Front Porch Interrupt Enable"]
146    #[inline(always)]
147    pub fn vfporch(&mut self) -> VFPORCH_W {
148        VFPORCH_W::new(self)
149    }
150    #[doc = "Bit 4 - Direct Drive Data Empty Interrupt Enable"]
151    #[inline(always)]
152    pub fn ddempty(&mut self) -> DDEMPTY_W {
153        DDEMPTY_W::new(self)
154    }
155    #[doc = "Bit 5 - Direct Drive Jitter Interrupt Enable"]
156    #[inline(always)]
157    pub fn ddjit(&mut self) -> DDJIT_W {
158        DDJIT_W::new(self)
159    }
160    #[doc = "Bit 6 - EBI_TFTPIXEL0 Empty Interrupt Enable"]
161    #[inline(always)]
162    pub fn tftpixel0empty(&mut self) -> TFTPIXEL0EMPTY_W {
163        TFTPIXEL0EMPTY_W::new(self)
164    }
165    #[doc = "Bit 7 - EBI_TFTPIXEL1 Empty Interrupt Enable"]
166    #[inline(always)]
167    pub fn tftpixel1empty(&mut self) -> TFTPIXEL1EMPTY_W {
168        TFTPIXEL1EMPTY_W::new(self)
169    }
170    #[doc = "Bit 8 - EBI_TFTPIXEL Full Interrupt Enable"]
171    #[inline(always)]
172    pub fn tftpixelfull(&mut self) -> TFTPIXELFULL_W {
173        TFTPIXELFULL_W::new(self)
174    }
175    #[doc = "Bit 9 - EBI_TFTPIXEL Overflow Interrupt Enable"]
176    #[inline(always)]
177    pub fn tftpixelof(&mut self) -> TFTPIXELOF_W {
178        TFTPIXELOF_W::new(self)
179    }
180    #[doc = "Writes raw bits to the register."]
181    #[inline(always)]
182    pub unsafe fn bits(&mut self, bits: u32) -> &mut Self {
183        self.0.bits(bits);
184        self
185    }
186}
187#[doc = "Interrupt Enable Register\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 [ien](index.html) module"]
188pub struct IEN_SPEC;
189impl crate::RegisterSpec for IEN_SPEC {
190    type Ux = u32;
191}
192#[doc = "`read()` method returns [ien::R](R) reader structure"]
193impl crate::Readable for IEN_SPEC {
194    type Reader = R;
195}
196#[doc = "`write(|w| ..)` method takes [ien::W](W) writer structure"]
197impl crate::Writable for IEN_SPEC {
198    type Writer = W;
199}
200#[doc = "`reset()` method sets IEN to value 0"]
201impl crate::Resettable for IEN_SPEC {
202    #[inline(always)]
203    fn reset_value() -> Self::Ux {
204        0
205    }
206}