bl808_pac/uart/
auto_baudrate.rs

1#[doc = "Register `auto_baudrate` reader"]
2pub struct R(crate::R<AUTO_BAUDRATE_SPEC>);
3impl core::ops::Deref for R {
4    type Target = crate::R<AUTO_BAUDRATE_SPEC>;
5    #[inline(always)]
6    fn deref(&self) -> &Self::Target {
7        &self.0
8    }
9}
10impl From<crate::R<AUTO_BAUDRATE_SPEC>> for R {
11    #[inline(always)]
12    fn from(reader: crate::R<AUTO_BAUDRATE_SPEC>) -> Self {
13        R(reader)
14    }
15}
16#[doc = "Field `by_start_bit` reader - Bit period of auto baudrate detection using start bit"]
17pub type BY_START_BIT_R = crate::FieldReader<u16, u16>;
18#[doc = "Field `by_five_five` reader - Bit period of auto baudrate detection using codeword 0x55"]
19pub type BY_FIVE_FIVE_R = crate::FieldReader<u16, u16>;
20impl R {
21    #[doc = "Bits 0:15 - Bit period of auto baudrate detection using start bit"]
22    #[inline(always)]
23    pub fn by_start_bit(&self) -> BY_START_BIT_R {
24        BY_START_BIT_R::new((self.bits & 0xffff) as u16)
25    }
26    #[doc = "Bits 16:31 - Bit period of auto baudrate detection using codeword 0x55"]
27    #[inline(always)]
28    pub fn by_five_five(&self) -> BY_FIVE_FIVE_R {
29        BY_FIVE_FIVE_R::new(((self.bits >> 16) & 0xffff) as u16)
30    }
31}
32#[doc = "Auto baudrate detection register\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 [auto_baudrate](index.html) module"]
33pub struct AUTO_BAUDRATE_SPEC;
34impl crate::RegisterSpec for AUTO_BAUDRATE_SPEC {
35    type Ux = u32;
36}
37#[doc = "`read()` method returns [auto_baudrate::R](R) reader structure"]
38impl crate::Readable for AUTO_BAUDRATE_SPEC {
39    type Reader = R;
40}
41#[doc = "`reset()` method sets auto_baudrate to value 0"]
42impl crate::Resettable for AUTO_BAUDRATE_SPEC {
43    #[inline(always)]
44    fn reset_value() -> Self::Ux {
45        0
46    }
47}