1#[doc = "Register `TO` reader"]
2pub type R = crate::R<TO_SPEC>;
3#[doc = "Register `TO` writer"]
4pub type W = crate::W<TO_SPEC>;
5#[doc = "Field `TIME_OUT_VALUE` reader - This register is used to configure the timeout for receiving a data bit in APB clock cycles."]
6pub type TIME_OUT_VALUE_R = crate::FieldReader;
7#[doc = "Field `TIME_OUT_VALUE` writer - This register is used to configure the timeout for receiving a data bit in APB clock cycles."]
8pub type TIME_OUT_VALUE_W<'a, REG> = crate::FieldWriter<'a, REG, 5>;
9#[doc = "Field `TIME_OUT_EN` reader - This is the enable bit for time out control."]
10pub type TIME_OUT_EN_R = crate::BitReader;
11#[doc = "Field `TIME_OUT_EN` writer - This is the enable bit for time out control."]
12pub type TIME_OUT_EN_W<'a, REG> = crate::BitWriter<'a, REG>;
13impl R {
14 #[doc = "Bits 0:4 - This register is used to configure the timeout for receiving a data bit in APB clock cycles."]
15 #[inline(always)]
16 pub fn time_out_value(&self) -> TIME_OUT_VALUE_R {
17 TIME_OUT_VALUE_R::new((self.bits & 0x1f) as u8)
18 }
19 #[doc = "Bit 5 - This is the enable bit for time out control."]
20 #[inline(always)]
21 pub fn time_out_en(&self) -> TIME_OUT_EN_R {
22 TIME_OUT_EN_R::new(((self.bits >> 5) & 1) != 0)
23 }
24}
25#[cfg(feature = "impl-register-debug")]
26impl core::fmt::Debug for R {
27 fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
28 f.debug_struct("TO")
29 .field("time_out_value", &self.time_out_value())
30 .field("time_out_en", &self.time_out_en())
31 .finish()
32 }
33}
34impl W {
35 #[doc = "Bits 0:4 - This register is used to configure the timeout for receiving a data bit in APB clock cycles."]
36 #[inline(always)]
37 #[must_use]
38 pub fn time_out_value(&mut self) -> TIME_OUT_VALUE_W<TO_SPEC> {
39 TIME_OUT_VALUE_W::new(self, 0)
40 }
41 #[doc = "Bit 5 - This is the enable bit for time out control."]
42 #[inline(always)]
43 #[must_use]
44 pub fn time_out_en(&mut self) -> TIME_OUT_EN_W<TO_SPEC> {
45 TIME_OUT_EN_W::new(self, 5)
46 }
47}
48#[doc = "Setting time out control for receiving data.\n\nYou can [`read`](crate::Reg::read) this register and get [`to::R`](R). You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`to::W`](W). You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
49pub struct TO_SPEC;
50impl crate::RegisterSpec for TO_SPEC {
51 type Ux = u32;
52}
53#[doc = "`read()` method returns [`to::R`](R) reader structure"]
54impl crate::Readable for TO_SPEC {}
55#[doc = "`write(|w| ..)` method takes [`to::W`](W) writer structure"]
56impl crate::Writable for TO_SPEC {
57 type Safety = crate::Unsafe;
58 const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0;
59 const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0;
60}
61#[doc = "`reset()` method sets TO to value 0x10"]
62impl crate::Resettable for TO_SPEC {
63 const RESET_VALUE: u32 = 0x10;
64}