1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#[doc = "Register `CH7_DBG_CTDREQ` reader"]
pub type R = crate::R<CH7_DBG_CTDREQ_SPEC>;
#[doc = "Register `CH7_DBG_CTDREQ` writer"]
pub type W = crate::W<CH7_DBG_CTDREQ_SPEC>;
#[doc = "Field `CH7_DBG_CTDREQ` reader - "]
pub type CH7_DBG_CTDREQ_R = crate::FieldReader;
#[doc = "Field `CH7_DBG_CTDREQ` writer - "]
pub type CH7_DBG_CTDREQ_W<'a, REG> = crate::FieldWriter<'a, REG, 6>;
impl R {
    #[doc = "Bits 0:5"]
    #[inline(always)]
    pub fn ch7_dbg_ctdreq(&self) -> CH7_DBG_CTDREQ_R {
        CH7_DBG_CTDREQ_R::new((self.bits & 0x3f) as u8)
    }
}
impl W {
    #[doc = "Bits 0:5"]
    #[inline(always)]
    #[must_use]
    pub fn ch7_dbg_ctdreq(&mut self) -> CH7_DBG_CTDREQ_W<CH7_DBG_CTDREQ_SPEC> {
        CH7_DBG_CTDREQ_W::new(self, 0)
    }
    #[doc = r" Writes raw bits to the register."]
    #[doc = r""]
    #[doc = r" # Safety"]
    #[doc = r""]
    #[doc = r" Passing incorrect value can cause undefined behaviour. See reference manual"]
    #[inline(always)]
    pub unsafe fn bits(&mut self, bits: u32) -> &mut Self {
        self.bits = bits;
        self
    }
}
#[doc = "Read: get channel DREQ counter (i.e. how many accesses the DMA expects it can perform on the peripheral without overflow/underflow. Write any value: clears the counter, and cause channel to re-initiate DREQ handshake.  

You can [`read`](crate::generic::Reg::read) this register and get [`ch7_dbg_ctdreq::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 [`ch7_dbg_ctdreq::W`](W). You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
pub struct CH7_DBG_CTDREQ_SPEC;
impl crate::RegisterSpec for CH7_DBG_CTDREQ_SPEC {
    type Ux = u32;
}
#[doc = "`read()` method returns [`ch7_dbg_ctdreq::R`](R) reader structure"]
impl crate::Readable for CH7_DBG_CTDREQ_SPEC {}
#[doc = "`write(|w| ..)` method takes [`ch7_dbg_ctdreq::W`](W) writer structure"]
impl crate::Writable for CH7_DBG_CTDREQ_SPEC {
    const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0;
    const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0x3f;
}
#[doc = "`reset()` method sets CH7_DBG_CTDREQ to value 0"]
impl crate::Resettable for CH7_DBG_CTDREQ_SPEC {
    const RESET_VALUE: u32 = 0;
}