1#[doc = "Register `INTR` reader"]
2pub type R = crate::R<INTR_SPEC>;
3#[doc = "Register `INTR` writer"]
4pub type W = crate::W<INTR_SPEC>;
5#[doc = "Field `INTR` reader - Raw interrupt status for DMA Channels 0..15. Bit n corresponds to channel n. Ignores any masking or forcing. Channel interrupts can be cleared by writing a bit mask to INTR, INTS0 or INTS1.
67 Channel interrupts can be routed to either of two system-level IRQs based on INTE0 and INTE1.
89 This can be used vector different channel interrupts to different ISRs: this might be done to allow NVIC IRQ preemption for more time-critical channels, or to spread IRQ load across different cores.
1011 It is also valid to ignore this behaviour and just use INTE0/INTS0/IRQ 0."]
12pub type INTR_R = crate::FieldReader<u16>;
13#[doc = "Field `INTR` writer - Raw interrupt status for DMA Channels 0..15. Bit n corresponds to channel n. Ignores any masking or forcing. Channel interrupts can be cleared by writing a bit mask to INTR, INTS0 or INTS1.
1415 Channel interrupts can be routed to either of two system-level IRQs based on INTE0 and INTE1.
1617 This can be used vector different channel interrupts to different ISRs: this might be done to allow NVIC IRQ preemption for more time-critical channels, or to spread IRQ load across different cores.
1819 It is also valid to ignore this behaviour and just use INTE0/INTS0/IRQ 0."]
20pub type INTR_W<'a, REG> = crate::FieldWriter<'a, REG, 16, u16>;
21impl R {
22#[doc = "Bits 0:15 - Raw interrupt status for DMA Channels 0..15. Bit n corresponds to channel n. Ignores any masking or forcing. Channel interrupts can be cleared by writing a bit mask to INTR, INTS0 or INTS1.
2324 Channel interrupts can be routed to either of two system-level IRQs based on INTE0 and INTE1.
2526 This can be used vector different channel interrupts to different ISRs: this might be done to allow NVIC IRQ preemption for more time-critical channels, or to spread IRQ load across different cores.
2728 It is also valid to ignore this behaviour and just use INTE0/INTS0/IRQ 0."]
29 #[inline(always)]
30pub fn intr(&self) -> INTR_R {
31 INTR_R::new((self.bits & 0xffff) as u16)
32 }
33}
34impl W {
35#[doc = "Bits 0:15 - Raw interrupt status for DMA Channels 0..15. Bit n corresponds to channel n. Ignores any masking or forcing. Channel interrupts can be cleared by writing a bit mask to INTR, INTS0 or INTS1.
3637 Channel interrupts can be routed to either of two system-level IRQs based on INTE0 and INTE1.
3839 This can be used vector different channel interrupts to different ISRs: this might be done to allow NVIC IRQ preemption for more time-critical channels, or to spread IRQ load across different cores.
4041 It is also valid to ignore this behaviour and just use INTE0/INTS0/IRQ 0."]
42 #[inline(always)]
43 #[must_use]
44pub fn intr(&mut self) -> INTR_W<INTR_SPEC> {
45 INTR_W::new(self, 0)
46 }
47#[doc = r" Writes raw bits to the register."]
48 #[doc = r""]
49 #[doc = r" # Safety"]
50 #[doc = r""]
51 #[doc = r" Passing incorrect value can cause undefined behaviour. See reference manual"]
52 #[inline(always)]
53pub unsafe fn bits(&mut self, bits: u32) -> &mut Self {
54self.bits = bits;
55self
56}
57}
58#[doc = "Interrupt Status (raw)
5960You can [`read`](crate::generic::Reg::read) this register and get [`intr::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 [`intr::W`](W). You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
61pub struct INTR_SPEC;
62impl crate::RegisterSpec for INTR_SPEC {
63type Ux = u32;
64}
65#[doc = "`read()` method returns [`intr::R`](R) reader structure"]
66impl crate::Readable for INTR_SPEC {}
67#[doc = "`write(|w| ..)` method takes [`intr::W`](W) writer structure"]
68impl crate::Writable for INTR_SPEC {
69const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0;
70const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0xffff;
71}
72#[doc = "`reset()` method sets INTR to value 0"]
73impl crate::Resettable for INTR_SPEC {
74const RESET_VALUE: u32 = 0;
75}