1#[doc = "Register `ERR_CLR` reader"]
2pub struct R(crate::R<ERR_CLR_SPEC>);
3impl core::ops::Deref for R {
4 type Target = crate::R<ERR_CLR_SPEC>;
5 #[inline(always)]
6 fn deref(&self) -> &Self::Target {
7 &self.0
8 }
9}
10impl From<crate::R<ERR_CLR_SPEC>> for R {
11 #[inline(always)]
12 fn from(reader: crate::R<ERR_CLR_SPEC>) -> Self {
13 R(reader)
14 }
15}
16#[doc = "Register `ERR_CLR` writer"]
17pub struct W(crate::W<ERR_CLR_SPEC>);
18impl core::ops::Deref for W {
19 type Target = crate::W<ERR_CLR_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<ERR_CLR_SPEC>> for W {
32 #[inline(always)]
33 fn from(writer: crate::W<ERR_CLR_SPEC>) -> Self {
34 W(writer)
35 }
36}
37#[doc = "Field `err_clr` reader - Returns the status of dma_err, or sets the signal LOW. Read as:\n \n 0 = dma_err is LOW \n \n 1 = dma_err is HIGH. \n \n Write as: \n \n 0 = No effect, status of dma_err is unchanged. \n \n 1 = Sets dma_err LOW. \n \n For test purposes, use the err_set register to set dma_err HIGH."]
38pub struct ERR_CLR_R(crate::FieldReader<bool, bool>);
39impl ERR_CLR_R {
40 #[inline(always)]
41 pub(crate) fn new(bits: bool) -> Self {
42 ERR_CLR_R(crate::FieldReader::new(bits))
43 }
44}
45impl core::ops::Deref for ERR_CLR_R {
46 type Target = crate::FieldReader<bool, bool>;
47 #[inline(always)]
48 fn deref(&self) -> &Self::Target {
49 &self.0
50 }
51}
52#[doc = "Field `err_clr` writer - Returns the status of dma_err, or sets the signal LOW. Read as:\n \n 0 = dma_err is LOW \n \n 1 = dma_err is HIGH. \n \n Write as: \n \n 0 = No effect, status of dma_err is unchanged. \n \n 1 = Sets dma_err LOW. \n \n For test purposes, use the err_set register to set dma_err HIGH."]
53pub struct ERR_CLR_W<'a> {
54 w: &'a mut W,
55}
56impl<'a> ERR_CLR_W<'a> {
57 #[doc = r"Sets the field bit"]
58 #[inline(always)]
59 pub fn set_bit(self) -> &'a mut W {
60 self.bit(true)
61 }
62 #[doc = r"Clears the field bit"]
63 #[inline(always)]
64 pub fn clear_bit(self) -> &'a mut W {
65 self.bit(false)
66 }
67 #[doc = r"Writes raw bits to the field"]
68 #[inline(always)]
69 pub fn bit(self, value: bool) -> &'a mut W {
70 self.w.bits = (self.w.bits & !0x01) | (value as u32 & 0x01);
71 self.w
72 }
73}
74impl R {
75 #[doc = "Bit 0 - Returns the status of dma_err, or sets the signal LOW. Read as:\n \n 0 = dma_err is LOW \n \n 1 = dma_err is HIGH. \n \n Write as: \n \n 0 = No effect, status of dma_err is unchanged. \n \n 1 = Sets dma_err LOW. \n \n For test purposes, use the err_set register to set dma_err HIGH."]
76 #[inline(always)]
77 pub fn err_clr(&self) -> ERR_CLR_R {
78 ERR_CLR_R::new((self.bits & 0x01) != 0)
79 }
80}
81impl W {
82 #[doc = "Bit 0 - Returns the status of dma_err, or sets the signal LOW. Read as:\n \n 0 = dma_err is LOW \n \n 1 = dma_err is HIGH. \n \n Write as: \n \n 0 = No effect, status of dma_err is unchanged. \n \n 1 = Sets dma_err LOW. \n \n For test purposes, use the err_set register to set dma_err HIGH."]
83 #[inline(always)]
84 pub fn err_clr(&mut self) -> ERR_CLR_W {
85 ERR_CLR_W { w: self }
86 }
87 #[doc = "Writes raw bits to the register."]
88 #[inline(always)]
89 pub unsafe fn bits(&mut self, bits: u32) -> &mut Self {
90 self.0.bits(bits);
91 self
92 }
93}
94#[doc = "Returns the status of dma_err, or sets the signal LOW.\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 [err_clr](index.html) module"]
95pub struct ERR_CLR_SPEC;
96impl crate::RegisterSpec for ERR_CLR_SPEC {
97 type Ux = u32;
98}
99#[doc = "`read()` method returns [err_clr::R](R) reader structure"]
100impl crate::Readable for ERR_CLR_SPEC {
101 type Reader = R;
102}
103#[doc = "`write(|w| ..)` method takes [err_clr::W](W) writer structure"]
104impl crate::Writable for ERR_CLR_SPEC {
105 type Writer = W;
106}
107#[doc = "`reset()` method sets ERR_CLR to value 0"]
108impl crate::Resettable for ERR_CLR_SPEC {
109 #[inline(always)]
110 fn reset_value() -> Self::Ux {
111 0
112 }
113}