esp32s3/i2s1/
int_clr.rs

1#[doc = "Register `INT_CLR` writer"]
2pub type W = crate::W<INT_CLR_SPEC>;
3#[doc = "Field `RX_DONE` writer - Set this bit to clear the i2s_rx_done_int interrupt"]
4pub type RX_DONE_W<'a, REG> = crate::BitWriter1C<'a, REG>;
5#[doc = "Field `TX_DONE` writer - Set this bit to clear the i2s_tx_done_int interrupt"]
6pub type TX_DONE_W<'a, REG> = crate::BitWriter1C<'a, REG>;
7#[doc = "Field `RX_HUNG` writer - Set this bit to clear the i2s_rx_hung_int interrupt"]
8pub type RX_HUNG_W<'a, REG> = crate::BitWriter1C<'a, REG>;
9#[doc = "Field `TX_HUNG` writer - Set this bit to clear the i2s_tx_hung_int interrupt"]
10pub type TX_HUNG_W<'a, REG> = crate::BitWriter1C<'a, REG>;
11#[cfg(feature = "impl-register-debug")]
12impl core::fmt::Debug for crate::generic::Reg<INT_CLR_SPEC> {
13    fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
14        write!(f, "(not readable)")
15    }
16}
17impl W {
18    #[doc = "Bit 0 - Set this bit to clear the i2s_rx_done_int interrupt"]
19    #[inline(always)]
20    pub fn rx_done(&mut self) -> RX_DONE_W<INT_CLR_SPEC> {
21        RX_DONE_W::new(self, 0)
22    }
23    #[doc = "Bit 1 - Set this bit to clear the i2s_tx_done_int interrupt"]
24    #[inline(always)]
25    pub fn tx_done(&mut self) -> TX_DONE_W<INT_CLR_SPEC> {
26        TX_DONE_W::new(self, 1)
27    }
28    #[doc = "Bit 2 - Set this bit to clear the i2s_rx_hung_int interrupt"]
29    #[inline(always)]
30    pub fn rx_hung(&mut self) -> RX_HUNG_W<INT_CLR_SPEC> {
31        RX_HUNG_W::new(self, 2)
32    }
33    #[doc = "Bit 3 - Set this bit to clear the i2s_tx_hung_int interrupt"]
34    #[inline(always)]
35    pub fn tx_hung(&mut self) -> TX_HUNG_W<INT_CLR_SPEC> {
36        TX_HUNG_W::new(self, 3)
37    }
38}
39#[doc = "I2S interrupt clear register.\n\nYou can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`int_clr::W`](W). See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
40pub struct INT_CLR_SPEC;
41impl crate::RegisterSpec for INT_CLR_SPEC {
42    type Ux = u32;
43}
44#[doc = "`write(|w| ..)` method takes [`int_clr::W`](W) writer structure"]
45impl crate::Writable for INT_CLR_SPEC {
46    type Safety = crate::Unsafe;
47    const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0;
48    const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0x0f;
49}
50#[doc = "`reset()` method sets INT_CLR to value 0"]
51impl crate::Resettable for INT_CLR_SPEC {
52    const RESET_VALUE: u32 = 0;
53}