1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#[doc = r"Register block"]
#[repr(C)]
pub struct EPIN {
    #[doc = "0x00 - Description cluster\\[n\\]: Data pointer"]
    pub ptr: PTR,
    #[doc = "0x04 - Description cluster\\[n\\]: Maximum number of bytes to transfer"]
    pub maxcnt: MAXCNT,
    #[doc = "0x08 - Description cluster\\[n\\]: Number of bytes transferred in the last transaction"]
    pub amount: AMOUNT,
}
#[doc = "PTR (rw) register accessor: an alias for `Reg<PTR_SPEC>`"]
pub type PTR = crate::Reg<ptr::PTR_SPEC>;
#[doc = "Description cluster\\[n\\]: Data pointer"]
pub mod ptr;
#[doc = "MAXCNT (rw) register accessor: an alias for `Reg<MAXCNT_SPEC>`"]
pub type MAXCNT = crate::Reg<maxcnt::MAXCNT_SPEC>;
#[doc = "Description cluster\\[n\\]: Maximum number of bytes to transfer"]
pub mod maxcnt;
#[doc = "AMOUNT (r) register accessor: an alias for `Reg<AMOUNT_SPEC>`"]
pub type AMOUNT = crate::Reg<amount::AMOUNT_SPEC>;
#[doc = "Description cluster\\[n\\]: Number of bytes transferred in the last transaction"]
pub mod amount;