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 pub fn time_out_value(&mut self) -> TIME_OUT_VALUE_W<TO_SPEC> {
38 TIME_OUT_VALUE_W::new(self, 0)
39 }
40 #[doc = "Bit 5 - This is the enable bit for time out control."]
41 #[inline(always)]
42 pub fn time_out_en(&mut self) -> TIME_OUT_EN_W<TO_SPEC> {
43 TIME_OUT_EN_W::new(self, 5)
44 }
45}
46#[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)."]
47pub struct TO_SPEC;
48impl crate::RegisterSpec for TO_SPEC {
49 type Ux = u32;
50}
51#[doc = "`read()` method returns [`to::R`](R) reader structure"]
52impl crate::Readable for TO_SPEC {}
53#[doc = "`write(|w| ..)` method takes [`to::W`](W) writer structure"]
54impl crate::Writable for TO_SPEC {
55 type Safety = crate::Unsafe;
56 const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0;
57 const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0;
58}
59#[doc = "`reset()` method sets TO to value 0x10"]
60impl crate::Resettable for TO_SPEC {
61 const RESET_VALUE: u32 = 0x10;
62}