1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#[doc = "Register `SET_LINE_CODE_W1` reader"]
pub type R = crate::R<SET_LINE_CODE_W1_SPEC>;
#[doc = "Field `BCHAR_FORMAT` reader - The value of bCharFormat set by host through SET_LINE_CODING command."]
pub type BCHAR_FORMAT_R = crate::FieldReader;
#[doc = "Field `BPARITY_TYPE` reader - The value of bParityTpye set by host through SET_LINE_CODING command."]
pub type BPARITY_TYPE_R = crate::FieldReader;
#[doc = "Field `BDATA_BITS` reader - The value of bDataBits set by host through SET_LINE_CODING command."]
pub type BDATA_BITS_R = crate::FieldReader;
impl R {
    #[doc = "Bits 0:7 - The value of bCharFormat set by host through SET_LINE_CODING command."]
    #[inline(always)]
    pub fn bchar_format(&self) -> BCHAR_FORMAT_R {
        BCHAR_FORMAT_R::new((self.bits & 0xff) as u8)
    }
    #[doc = "Bits 8:15 - The value of bParityTpye set by host through SET_LINE_CODING command."]
    #[inline(always)]
    pub fn bparity_type(&self) -> BPARITY_TYPE_R {
        BPARITY_TYPE_R::new(((self.bits >> 8) & 0xff) as u8)
    }
    #[doc = "Bits 16:23 - The value of bDataBits set by host through SET_LINE_CODING command."]
    #[inline(always)]
    pub fn bdata_bits(&self) -> BDATA_BITS_R {
        BDATA_BITS_R::new(((self.bits >> 16) & 0xff) as u8)
    }
}
#[cfg(feature = "impl-register-debug")]
impl core::fmt::Debug for R {
    fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
        f.debug_struct("SET_LINE_CODE_W1")
            .field(
                "bchar_format",
                &format_args!("{}", self.bchar_format().bits()),
            )
            .field(
                "bparity_type",
                &format_args!("{}", self.bparity_type().bits()),
            )
            .field("bdata_bits", &format_args!("{}", self.bdata_bits().bits()))
            .finish()
    }
}
#[cfg(feature = "impl-register-debug")]
impl core::fmt::Debug for crate::generic::Reg<SET_LINE_CODE_W1_SPEC> {
    fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
        self.read().fmt(f)
    }
}
#[doc = "W1 of SET_LINE_CODING command.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`set_line_code_w1::R`](R).  See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
pub struct SET_LINE_CODE_W1_SPEC;
impl crate::RegisterSpec for SET_LINE_CODE_W1_SPEC {
    type Ux = u32;
}
#[doc = "`read()` method returns [`set_line_code_w1::R`](R) reader structure"]
impl crate::Readable for SET_LINE_CODE_W1_SPEC {}
#[doc = "`reset()` method sets SET_LINE_CODE_W1 to value 0"]
impl crate::Resettable for SET_LINE_CODE_W1_SPEC {
    const RESET_VALUE: Self::Ux = 0;
}