nrf5340_app_pac/ctrlap_ns/
mailbox.rs

1#[doc = r"Register block"]
2#[repr(C)]
3pub struct MAILBOX {
4    #[doc = "0x00 - Data sent from the debugger to the CPU."]
5    pub rxdata: RXDATA,
6    #[doc = "0x04 - This register shows a status that indicates if data sent from the debugger to the CPU has been read."]
7    pub rxstatus: RXSTATUS,
8    _reserved2: [u8; 0x78],
9    #[doc = "0x80 - Data sent from the CPU to the debugger."]
10    pub txdata: TXDATA,
11    #[doc = "0x84 - This register shows a status that indicates if the data sent from the CPU to the debugger has been read."]
12    pub txstatus: TXSTATUS,
13}
14#[doc = "RXDATA (r) register accessor: an alias for `Reg<RXDATA_SPEC>`"]
15pub type RXDATA = crate::Reg<rxdata::RXDATA_SPEC>;
16#[doc = "Data sent from the debugger to the CPU."]
17pub mod rxdata;
18#[doc = "RXSTATUS (r) register accessor: an alias for `Reg<RXSTATUS_SPEC>`"]
19pub type RXSTATUS = crate::Reg<rxstatus::RXSTATUS_SPEC>;
20#[doc = "This register shows a status that indicates if data sent from the debugger to the CPU has been read."]
21pub mod rxstatus;
22#[doc = "TXDATA (rw) register accessor: an alias for `Reg<TXDATA_SPEC>`"]
23pub type TXDATA = crate::Reg<txdata::TXDATA_SPEC>;
24#[doc = "Data sent from the CPU to the debugger."]
25pub mod txdata;
26#[doc = "TXSTATUS (r) register accessor: an alias for `Reg<TXSTATUS_SPEC>`"]
27pub type TXSTATUS = crate::Reg<txstatus::TXSTATUS_SPEC>;
28#[doc = "This register shows a status that indicates if the data sent from the CPU to the debugger has been read."]
29pub mod txstatus;