nrf52840_pac/usbd/
epout.rs

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