nrf52840_pac/
twis0.rs
1#[doc = r"Register block"]
2#[repr(C)]
3pub struct RegisterBlock {
4 _reserved0: [u8; 0x14],
5 #[doc = "0x14 - Stop TWI transaction"]
6 pub tasks_stop: TASKS_STOP,
7 _reserved1: [u8; 0x04],
8 #[doc = "0x1c - Suspend TWI transaction"]
9 pub tasks_suspend: TASKS_SUSPEND,
10 #[doc = "0x20 - Resume TWI transaction"]
11 pub tasks_resume: TASKS_RESUME,
12 _reserved3: [u8; 0x0c],
13 #[doc = "0x30 - Prepare the TWI slave to respond to a write command"]
14 pub tasks_preparerx: TASKS_PREPARERX,
15 #[doc = "0x34 - Prepare the TWI slave to respond to a read command"]
16 pub tasks_preparetx: TASKS_PREPARETX,
17 _reserved5: [u8; 0xcc],
18 #[doc = "0x104 - TWI stopped"]
19 pub events_stopped: EVENTS_STOPPED,
20 _reserved6: [u8; 0x1c],
21 #[doc = "0x124 - TWI error"]
22 pub events_error: EVENTS_ERROR,
23 _reserved7: [u8; 0x24],
24 #[doc = "0x14c - Receive sequence started"]
25 pub events_rxstarted: EVENTS_RXSTARTED,
26 #[doc = "0x150 - Transmit sequence started"]
27 pub events_txstarted: EVENTS_TXSTARTED,
28 _reserved9: [u8; 0x10],
29 #[doc = "0x164 - Write command received"]
30 pub events_write: EVENTS_WRITE,
31 #[doc = "0x168 - Read command received"]
32 pub events_read: EVENTS_READ,
33 _reserved11: [u8; 0x94],
34 #[doc = "0x200 - Shortcut register"]
35 pub shorts: SHORTS,
36 _reserved12: [u8; 0xfc],
37 #[doc = "0x300 - Enable or disable interrupt"]
38 pub inten: INTEN,
39 #[doc = "0x304 - Enable interrupt"]
40 pub intenset: INTENSET,
41 #[doc = "0x308 - Disable interrupt"]
42 pub intenclr: INTENCLR,
43 _reserved15: [u8; 0x01c4],
44 #[doc = "0x4d0 - Error source"]
45 pub errorsrc: ERRORSRC,
46 #[doc = "0x4d4 - Status register indicating which address had a match"]
47 pub match_: MATCH,
48 _reserved17: [u8; 0x28],
49 #[doc = "0x500 - Enable TWIS"]
50 pub enable: ENABLE,
51 _reserved18: [u8; 0x04],
52 #[doc = "0x508..0x510 - Unspecified"]
53 pub psel: PSEL,
54 _reserved19: [u8; 0x24],
55 #[doc = "0x534..0x540 - RXD EasyDMA channel"]
56 pub rxd: RXD,
57 _reserved20: [u8; 0x04],
58 #[doc = "0x544..0x550 - TXD EasyDMA channel"]
59 pub txd: TXD,
60 _reserved21: [u8; 0x38],
61 #[doc = "0x588..0x590 - Description collection\\[n\\]: TWI slave address n"]
62 pub address: [ADDRESS; 2],
63 _reserved22: [u8; 0x04],
64 #[doc = "0x594 - Configuration register for the address match mechanism"]
65 pub config: CONFIG,
66 _reserved23: [u8; 0x28],
67 #[doc = "0x5c0 - Over-read character. Character sent out in case of an over-read of the transmit buffer."]
68 pub orc: ORC,
69}
70#[doc = "TASKS_STOP (w) register accessor: an alias for `Reg<TASKS_STOP_SPEC>`"]
71pub type TASKS_STOP = crate::Reg<tasks_stop::TASKS_STOP_SPEC>;
72#[doc = "Stop TWI transaction"]
73pub mod tasks_stop;
74#[doc = "TASKS_SUSPEND (w) register accessor: an alias for `Reg<TASKS_SUSPEND_SPEC>`"]
75pub type TASKS_SUSPEND = crate::Reg<tasks_suspend::TASKS_SUSPEND_SPEC>;
76#[doc = "Suspend TWI transaction"]
77pub mod tasks_suspend;
78#[doc = "TASKS_RESUME (w) register accessor: an alias for `Reg<TASKS_RESUME_SPEC>`"]
79pub type TASKS_RESUME = crate::Reg<tasks_resume::TASKS_RESUME_SPEC>;
80#[doc = "Resume TWI transaction"]
81pub mod tasks_resume;
82#[doc = "TASKS_PREPARERX (w) register accessor: an alias for `Reg<TASKS_PREPARERX_SPEC>`"]
83pub type TASKS_PREPARERX = crate::Reg<tasks_preparerx::TASKS_PREPARERX_SPEC>;
84#[doc = "Prepare the TWI slave to respond to a write command"]
85pub mod tasks_preparerx;
86#[doc = "TASKS_PREPARETX (w) register accessor: an alias for `Reg<TASKS_PREPARETX_SPEC>`"]
87pub type TASKS_PREPARETX = crate::Reg<tasks_preparetx::TASKS_PREPARETX_SPEC>;
88#[doc = "Prepare the TWI slave to respond to a read command"]
89pub mod tasks_preparetx;
90#[doc = "EVENTS_STOPPED (rw) register accessor: an alias for `Reg<EVENTS_STOPPED_SPEC>`"]
91pub type EVENTS_STOPPED = crate::Reg<events_stopped::EVENTS_STOPPED_SPEC>;
92#[doc = "TWI stopped"]
93pub mod events_stopped;
94#[doc = "EVENTS_ERROR (rw) register accessor: an alias for `Reg<EVENTS_ERROR_SPEC>`"]
95pub type EVENTS_ERROR = crate::Reg<events_error::EVENTS_ERROR_SPEC>;
96#[doc = "TWI error"]
97pub mod events_error;
98#[doc = "EVENTS_RXSTARTED (rw) register accessor: an alias for `Reg<EVENTS_RXSTARTED_SPEC>`"]
99pub type EVENTS_RXSTARTED = crate::Reg<events_rxstarted::EVENTS_RXSTARTED_SPEC>;
100#[doc = "Receive sequence started"]
101pub mod events_rxstarted;
102#[doc = "EVENTS_TXSTARTED (rw) register accessor: an alias for `Reg<EVENTS_TXSTARTED_SPEC>`"]
103pub type EVENTS_TXSTARTED = crate::Reg<events_txstarted::EVENTS_TXSTARTED_SPEC>;
104#[doc = "Transmit sequence started"]
105pub mod events_txstarted;
106#[doc = "EVENTS_WRITE (rw) register accessor: an alias for `Reg<EVENTS_WRITE_SPEC>`"]
107pub type EVENTS_WRITE = crate::Reg<events_write::EVENTS_WRITE_SPEC>;
108#[doc = "Write command received"]
109pub mod events_write;
110#[doc = "EVENTS_READ (rw) register accessor: an alias for `Reg<EVENTS_READ_SPEC>`"]
111pub type EVENTS_READ = crate::Reg<events_read::EVENTS_READ_SPEC>;
112#[doc = "Read command received"]
113pub mod events_read;
114#[doc = "SHORTS (rw) register accessor: an alias for `Reg<SHORTS_SPEC>`"]
115pub type SHORTS = crate::Reg<shorts::SHORTS_SPEC>;
116#[doc = "Shortcut register"]
117pub mod shorts;
118#[doc = "INTEN (rw) register accessor: an alias for `Reg<INTEN_SPEC>`"]
119pub type INTEN = crate::Reg<inten::INTEN_SPEC>;
120#[doc = "Enable or disable interrupt"]
121pub mod inten;
122#[doc = "INTENSET (rw) register accessor: an alias for `Reg<INTENSET_SPEC>`"]
123pub type INTENSET = crate::Reg<intenset::INTENSET_SPEC>;
124#[doc = "Enable interrupt"]
125pub mod intenset;
126#[doc = "INTENCLR (rw) register accessor: an alias for `Reg<INTENCLR_SPEC>`"]
127pub type INTENCLR = crate::Reg<intenclr::INTENCLR_SPEC>;
128#[doc = "Disable interrupt"]
129pub mod intenclr;
130#[doc = "ERRORSRC (rw) register accessor: an alias for `Reg<ERRORSRC_SPEC>`"]
131pub type ERRORSRC = crate::Reg<errorsrc::ERRORSRC_SPEC>;
132#[doc = "Error source"]
133pub mod errorsrc;
134#[doc = "MATCH (r) register accessor: an alias for `Reg<MATCH_SPEC>`"]
135pub type MATCH = crate::Reg<match_::MATCH_SPEC>;
136#[doc = "Status register indicating which address had a match"]
137pub mod match_;
138#[doc = "ENABLE (rw) register accessor: an alias for `Reg<ENABLE_SPEC>`"]
139pub type ENABLE = crate::Reg<enable::ENABLE_SPEC>;
140#[doc = "Enable TWIS"]
141pub mod enable;
142#[doc = "Unspecified"]
143pub use psel::PSEL;
144#[doc = r"Cluster"]
145#[doc = "Unspecified"]
146pub mod psel;
147#[doc = "RXD EasyDMA channel"]
148pub use rxd::RXD;
149#[doc = r"Cluster"]
150#[doc = "RXD EasyDMA channel"]
151pub mod rxd;
152#[doc = "TXD EasyDMA channel"]
153pub use txd::TXD;
154#[doc = r"Cluster"]
155#[doc = "TXD EasyDMA channel"]
156pub mod txd;
157#[doc = "ADDRESS (rw) register accessor: an alias for `Reg<ADDRESS_SPEC>`"]
158pub type ADDRESS = crate::Reg<address::ADDRESS_SPEC>;
159#[doc = "Description collection\\[n\\]: TWI slave address n"]
160pub mod address;
161#[doc = "CONFIG (rw) register accessor: an alias for `Reg<CONFIG_SPEC>`"]
162pub type CONFIG = crate::Reg<config::CONFIG_SPEC>;
163#[doc = "Configuration register for the address match mechanism"]
164pub mod config;
165#[doc = "ORC (rw) register accessor: an alias for `Reg<ORC_SPEC>`"]
166pub type ORC = crate::Reg<orc::ORC_SPEC>;
167#[doc = "Over-read character. Character sent out in case of an over-read of the transmit buffer."]
168pub mod orc;