esp32p4/lp_i2c0/
to.rs

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 - Configures the timeout threshold period for SCL stucking at high or low level. The actual period is 2^(reg_time_out_value). Measurement unit: i2c_sclk."]
6pub type TIME_OUT_VALUE_R = crate::FieldReader;
7#[doc = "Field `TIME_OUT_VALUE` writer - Configures the timeout threshold period for SCL stucking at high or low level. The actual period is 2^(reg_time_out_value). Measurement unit: i2c_sclk."]
8pub type TIME_OUT_VALUE_W<'a, REG> = crate::FieldWriter<'a, REG, 5>;
9#[doc = "Field `TIME_OUT_EN` reader - Configures to enable time out control. 0: No effect 1: Enable"]
10pub type TIME_OUT_EN_R = crate::BitReader;
11#[doc = "Field `TIME_OUT_EN` writer - Configures to enable time out control. 0: No effect 1: Enable"]
12pub type TIME_OUT_EN_W<'a, REG> = crate::BitWriter<'a, REG>;
13impl R {
14    #[doc = "Bits 0:4 - Configures the timeout threshold period for SCL stucking at high or low level. The actual period is 2^(reg_time_out_value). Measurement unit: i2c_sclk."]
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 - Configures to enable time out control. 0: No effect 1: Enable"]
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(
30                "time_out_value",
31                &format_args!("{}", self.time_out_value().bits()),
32            )
33            .field("time_out_en", &format_args!("{}", self.time_out_en().bit()))
34            .finish()
35    }
36}
37#[cfg(feature = "impl-register-debug")]
38impl core::fmt::Debug for crate::generic::Reg<TO_SPEC> {
39    fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
40        core::fmt::Debug::fmt(&self.read(), f)
41    }
42}
43impl W {
44    #[doc = "Bits 0:4 - Configures the timeout threshold period for SCL stucking at high or low level. The actual period is 2^(reg_time_out_value). Measurement unit: i2c_sclk."]
45    #[inline(always)]
46    #[must_use]
47    pub fn time_out_value(&mut self) -> TIME_OUT_VALUE_W<TO_SPEC> {
48        TIME_OUT_VALUE_W::new(self, 0)
49    }
50    #[doc = "Bit 5 - Configures to enable time out control. 0: No effect 1: Enable"]
51    #[inline(always)]
52    #[must_use]
53    pub fn time_out_en(&mut self) -> TIME_OUT_EN_W<TO_SPEC> {
54        TIME_OUT_EN_W::new(self, 5)
55    }
56}
57#[doc = "Setting time out control for receiving data.\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`to::R`](R).  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`to::W`](W). You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
58pub struct TO_SPEC;
59impl crate::RegisterSpec for TO_SPEC {
60    type Ux = u32;
61}
62#[doc = "`read()` method returns [`to::R`](R) reader structure"]
63impl crate::Readable for TO_SPEC {}
64#[doc = "`write(|w| ..)` method takes [`to::W`](W) writer structure"]
65impl crate::Writable for TO_SPEC {
66    type Safety = crate::Unsafe;
67    const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0;
68    const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0;
69}
70#[doc = "`reset()` method sets TO to value 0x10"]
71impl crate::Resettable for TO_SPEC {
72    const RESET_VALUE: u32 = 0x10;
73}