1#[doc = "Register `INT_CLR` writer"]
2pub type W = crate::W<INT_CLR_SPEC>;
3#[doc = "Field `PER_END` writer - The clear bit for SPI_MEM_PER_END_INT interrupt."]
4pub type PER_END_W<'a, REG> = crate::BitWriter1C<'a, REG>;
5#[doc = "Field `PES_END` writer - The clear bit for SPI_MEM_PES_END_INT interrupt."]
6pub type PES_END_W<'a, REG> = crate::BitWriter1C<'a, REG>;
7#[doc = "Field `TOTAL_TRANS_END` writer - The clear bit for SPI_MEM_TOTAL_TRANS_END_INT interrupt."]
8pub type TOTAL_TRANS_END_W<'a, REG> = crate::BitWriter1C<'a, REG>;
9#[doc = "Field `BROWN_OUT` writer - The status bit for SPI_MEM_BROWN_OUT_INT interrupt."]
10pub type BROWN_OUT_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 - The clear bit for SPI_MEM_PER_END_INT interrupt."]
19 #[inline(always)]
20 pub fn per_end(&mut self) -> PER_END_W<INT_CLR_SPEC> {
21 PER_END_W::new(self, 0)
22 }
23 #[doc = "Bit 1 - The clear bit for SPI_MEM_PES_END_INT interrupt."]
24 #[inline(always)]
25 pub fn pes_end(&mut self) -> PES_END_W<INT_CLR_SPEC> {
26 PES_END_W::new(self, 1)
27 }
28 #[doc = "Bit 2 - The clear bit for SPI_MEM_TOTAL_TRANS_END_INT interrupt."]
29 #[inline(always)]
30 pub fn total_trans_end(&mut self) -> TOTAL_TRANS_END_W<INT_CLR_SPEC> {
31 TOTAL_TRANS_END_W::new(self, 2)
32 }
33 #[doc = "Bit 3 - The status bit for SPI_MEM_BROWN_OUT_INT interrupt."]
34 #[inline(always)]
35 pub fn brown_out(&mut self) -> BROWN_OUT_W<INT_CLR_SPEC> {
36 BROWN_OUT_W::new(self, 3)
37 }
38}
39#[doc = "SPI1 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}