rp2040_pac/dma/ch/
ch_al3_read_addr_trig.rs
1#[doc = "Register `CH_AL3_READ_ADDR_TRIG` reader"]
2pub type R = crate::R<CH_AL3_READ_ADDR_TRIG_SPEC>;
3#[doc = "Register `CH_AL3_READ_ADDR_TRIG` writer"]
4pub type W = crate::W<CH_AL3_READ_ADDR_TRIG_SPEC>;
5impl core::fmt::Debug for R {
6 fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
7 write!(f, "{}", self.bits())
8 }
9}
10impl core::fmt::Debug for crate::generic::Reg<CH_AL3_READ_ADDR_TRIG_SPEC> {
11 fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
12 core::fmt::Debug::fmt(&self.read(), f)
13 }
14}
15impl W {
16 #[doc = r" Writes raw bits to the register."]
17 #[doc = r""]
18 #[doc = r" # Safety"]
19 #[doc = r""]
20 #[doc = r" Passing incorrect value can cause undefined behaviour. See reference manual"]
21 #[inline(always)]
22 pub unsafe fn bits(&mut self, bits: u32) -> &mut Self {
23 self.bits = bits;
24 self
25 }
26}
27#[doc = "Alias for channel 0 READ_ADDR register
28 This is a trigger register (0xc). Writing a nonzero value will
29 reload the channel counter and start the channel.
30
31You can [`read`](crate::generic::Reg::read) this register and get [`ch_al3_read_addr_trig::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 [`ch_al3_read_addr_trig::W`](W). You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
32pub struct CH_AL3_READ_ADDR_TRIG_SPEC;
33impl crate::RegisterSpec for CH_AL3_READ_ADDR_TRIG_SPEC {
34 type Ux = u32;
35}
36#[doc = "`read()` method returns [`ch_al3_read_addr_trig::R`](R) reader structure"]
37impl crate::Readable for CH_AL3_READ_ADDR_TRIG_SPEC {}
38#[doc = "`write(|w| ..)` method takes [`ch_al3_read_addr_trig::W`](W) writer structure"]
39impl crate::Writable for CH_AL3_READ_ADDR_TRIG_SPEC {
40 const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0;
41 const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0;
42}
43#[doc = "`reset()` method sets CH_AL3_READ_ADDR_TRIG to value 0"]
44impl crate::Resettable for CH_AL3_READ_ADDR_TRIG_SPEC {
45 const RESET_VALUE: u32 = 0;
46}