esp32c3/i2s0/
lc_hung_conf.rs

1#[doc = "Register `LC_HUNG_CONF` reader"]
2pub type R = crate::R<LC_HUNG_CONF_SPEC>;
3#[doc = "Register `LC_HUNG_CONF` writer"]
4pub type W = crate::W<LC_HUNG_CONF_SPEC>;
5#[doc = "Field `LC_FIFO_TIMEOUT` reader - the i2s_tx_hung_int interrupt or the i2s_rx_hung_int interrupt will be triggered when fifo hung counter is equal to this value"]
6pub type LC_FIFO_TIMEOUT_R = crate::FieldReader;
7#[doc = "Field `LC_FIFO_TIMEOUT` writer - the i2s_tx_hung_int interrupt or the i2s_rx_hung_int interrupt will be triggered when fifo hung counter is equal to this value"]
8pub type LC_FIFO_TIMEOUT_W<'a, REG> = crate::FieldWriter<'a, REG, 8>;
9#[doc = "Field `LC_FIFO_TIMEOUT_SHIFT` reader - The bits are used to scale tick counter threshold. The tick counter is reset when counter value >= 88000/2^i2s_lc_fifo_timeout_shift"]
10pub type LC_FIFO_TIMEOUT_SHIFT_R = crate::FieldReader;
11#[doc = "Field `LC_FIFO_TIMEOUT_SHIFT` writer - The bits are used to scale tick counter threshold. The tick counter is reset when counter value >= 88000/2^i2s_lc_fifo_timeout_shift"]
12pub type LC_FIFO_TIMEOUT_SHIFT_W<'a, REG> = crate::FieldWriter<'a, REG, 3>;
13#[doc = "Field `LC_FIFO_TIMEOUT_ENA` reader - The enable bit for FIFO timeout"]
14pub type LC_FIFO_TIMEOUT_ENA_R = crate::BitReader;
15#[doc = "Field `LC_FIFO_TIMEOUT_ENA` writer - The enable bit for FIFO timeout"]
16pub type LC_FIFO_TIMEOUT_ENA_W<'a, REG> = crate::BitWriter<'a, REG>;
17impl R {
18    #[doc = "Bits 0:7 - the i2s_tx_hung_int interrupt or the i2s_rx_hung_int interrupt will be triggered when fifo hung counter is equal to this value"]
19    #[inline(always)]
20    pub fn lc_fifo_timeout(&self) -> LC_FIFO_TIMEOUT_R {
21        LC_FIFO_TIMEOUT_R::new((self.bits & 0xff) as u8)
22    }
23    #[doc = "Bits 8:10 - The bits are used to scale tick counter threshold. The tick counter is reset when counter value >= 88000/2^i2s_lc_fifo_timeout_shift"]
24    #[inline(always)]
25    pub fn lc_fifo_timeout_shift(&self) -> LC_FIFO_TIMEOUT_SHIFT_R {
26        LC_FIFO_TIMEOUT_SHIFT_R::new(((self.bits >> 8) & 7) as u8)
27    }
28    #[doc = "Bit 11 - The enable bit for FIFO timeout"]
29    #[inline(always)]
30    pub fn lc_fifo_timeout_ena(&self) -> LC_FIFO_TIMEOUT_ENA_R {
31        LC_FIFO_TIMEOUT_ENA_R::new(((self.bits >> 11) & 1) != 0)
32    }
33}
34#[cfg(feature = "impl-register-debug")]
35impl core::fmt::Debug for R {
36    fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
37        f.debug_struct("LC_HUNG_CONF")
38            .field("lc_fifo_timeout", &self.lc_fifo_timeout())
39            .field("lc_fifo_timeout_shift", &self.lc_fifo_timeout_shift())
40            .field("lc_fifo_timeout_ena", &self.lc_fifo_timeout_ena())
41            .finish()
42    }
43}
44impl W {
45    #[doc = "Bits 0:7 - the i2s_tx_hung_int interrupt or the i2s_rx_hung_int interrupt will be triggered when fifo hung counter is equal to this value"]
46    #[inline(always)]
47    pub fn lc_fifo_timeout(&mut self) -> LC_FIFO_TIMEOUT_W<LC_HUNG_CONF_SPEC> {
48        LC_FIFO_TIMEOUT_W::new(self, 0)
49    }
50    #[doc = "Bits 8:10 - The bits are used to scale tick counter threshold. The tick counter is reset when counter value >= 88000/2^i2s_lc_fifo_timeout_shift"]
51    #[inline(always)]
52    pub fn lc_fifo_timeout_shift(&mut self) -> LC_FIFO_TIMEOUT_SHIFT_W<LC_HUNG_CONF_SPEC> {
53        LC_FIFO_TIMEOUT_SHIFT_W::new(self, 8)
54    }
55    #[doc = "Bit 11 - The enable bit for FIFO timeout"]
56    #[inline(always)]
57    pub fn lc_fifo_timeout_ena(&mut self) -> LC_FIFO_TIMEOUT_ENA_W<LC_HUNG_CONF_SPEC> {
58        LC_FIFO_TIMEOUT_ENA_W::new(self, 11)
59    }
60}
61#[doc = "I2S HUNG configure register.\n\nYou can [`read`](crate::Reg::read) this register and get [`lc_hung_conf::R`](R). You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`lc_hung_conf::W`](W). You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
62pub struct LC_HUNG_CONF_SPEC;
63impl crate::RegisterSpec for LC_HUNG_CONF_SPEC {
64    type Ux = u32;
65}
66#[doc = "`read()` method returns [`lc_hung_conf::R`](R) reader structure"]
67impl crate::Readable for LC_HUNG_CONF_SPEC {}
68#[doc = "`write(|w| ..)` method takes [`lc_hung_conf::W`](W) writer structure"]
69impl crate::Writable for LC_HUNG_CONF_SPEC {
70    type Safety = crate::Unsafe;
71    const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0;
72    const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0;
73}
74#[doc = "`reset()` method sets LC_HUNG_CONF to value 0x0810"]
75impl crate::Resettable for LC_HUNG_CONF_SPEC {
76    const RESET_VALUE: u32 = 0x0810;
77}