1
2
3
4
5
6
7
8
9
10
11
12
#[doc = "RAM address pointer to write samples to with EasyDMA"]
pub struct PTR {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "RAM address pointer to write samples to with EasyDMA"]
pub mod ptr;
#[doc = "Number of samples to allocate memory for in EasyDMA mode"]
pub struct MAXCNT {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Number of samples to allocate memory for in EasyDMA mode"]
pub mod maxcnt;