mimxrt595s/dma0/
channel.rs

1#[doc = r"Register block"]
2#[repr(C)]
3pub struct CHANNEL {
4    #[doc = "0x00 - Configuration register for DMA channel"]
5    pub cfg: CFG,
6    #[doc = "0x04 - Control and status register for DMA channel"]
7    pub ctlstat: CTLSTAT,
8    #[doc = "0x08 - Transfer configuration register for DMA channel"]
9    pub xfercfg: XFERCFG,
10}
11#[doc = "CFG (rw) register accessor: an alias for `Reg<CFG_SPEC>`"]
12pub type CFG = crate::Reg<cfg::CFG_SPEC>;
13#[doc = "Configuration register for DMA channel"]
14pub mod cfg;
15#[doc = "CTLSTAT (r) register accessor: an alias for `Reg<CTLSTAT_SPEC>`"]
16pub type CTLSTAT = crate::Reg<ctlstat::CTLSTAT_SPEC>;
17#[doc = "Control and status register for DMA channel"]
18pub mod ctlstat;
19#[doc = "XFERCFG (rw) register accessor: an alias for `Reg<XFERCFG_SPEC>`"]
20pub type XFERCFG = crate::Reg<xfercfg::XFERCFG_SPEC>;
21#[doc = "Transfer configuration register for DMA channel"]
22pub mod xfercfg;