1#[doc = r"Register block"]
2#[repr(C)]
3pub struct RegisterBlock {
4#[doc = "0x00 - Activate NFCT peripheral for incoming and outgoing frames, change state to activated"]
5pub tasks_activate: TASKS_ACTIVATE,
6#[doc = "0x04 - Disable NFCT peripheral"]
7pub tasks_disable: TASKS_DISABLE,
8#[doc = "0x08 - Enable NFC sense field mode, change state to sense mode"]
9pub tasks_sense: TASKS_SENSE,
10#[doc = "0x0c - Start transmission of an outgoing frame, change state to transmit"]
11pub tasks_starttx: TASKS_STARTTX,
12 _reserved4: [u8; 0x0c],
13#[doc = "0x1c - Initializes the EasyDMA for receive."]
14pub tasks_enablerxdata: TASKS_ENABLERXDATA,
15 _reserved5: [u8; 0x04],
16#[doc = "0x24 - Force state machine to IDLE state"]
17pub tasks_goidle: TASKS_GOIDLE,
18#[doc = "0x28 - Force state machine to SLEEP_A state"]
19pub tasks_gosleep: TASKS_GOSLEEP,
20 _reserved7: [u8; 0xd4],
21#[doc = "0x100 - The NFCT peripheral is ready to receive and send frames"]
22pub events_ready: EVENTS_READY,
23#[doc = "0x104 - Remote NFC field detected"]
24pub events_fielddetected: EVENTS_FIELDDETECTED,
25#[doc = "0x108 - Remote NFC field lost"]
26pub events_fieldlost: EVENTS_FIELDLOST,
27#[doc = "0x10c - Marks the start of the first symbol of a transmitted frame"]
28pub events_txframestart: EVENTS_TXFRAMESTART,
29#[doc = "0x110 - Marks the end of the last transmitted on-air symbol of a frame"]
30pub events_txframeend: EVENTS_TXFRAMEEND,
31#[doc = "0x114 - Marks the end of the first symbol of a received frame"]
32pub events_rxframestart: EVENTS_RXFRAMESTART,
33#[doc = "0x118 - Received data has been checked (CRC, parity) and transferred to RAM, and EasyDMA has ended accessing the RX buffer"]
34pub events_rxframeend: EVENTS_RXFRAMEEND,
35#[doc = "0x11c - NFC error reported. The ERRORSTATUS register contains details on the source of the error."]
36pub events_error: EVENTS_ERROR,
37 _reserved15: [u8; 0x08],
38#[doc = "0x128 - NFC RX frame error reported. The FRAMESTATUS.RX register contains details on the source of the error."]
39pub events_rxerror: EVENTS_RXERROR,
40#[doc = "0x12c - RX buffer (as defined by PACKETPTR and MAXLEN) in Data RAM full."]
41pub events_endrx: EVENTS_ENDRX,
42#[doc = "0x130 - Transmission of data in RAM has ended, and EasyDMA has ended accessing the TX buffer"]
43pub events_endtx: EVENTS_ENDTX,
44 _reserved18: [u8; 0x04],
45#[doc = "0x138 - Auto collision resolution process has started"]
46pub events_autocolresstarted: EVENTS_AUTOCOLRESSTARTED,
47 _reserved19: [u8; 0x0c],
48#[doc = "0x148 - NFC auto collision resolution error reported."]
49pub events_collision: EVENTS_COLLISION,
50#[doc = "0x14c - NFC auto collision resolution successfully completed"]
51pub events_selected: EVENTS_SELECTED,
52#[doc = "0x150 - EasyDMA is ready to receive or send frames."]
53pub events_started: EVENTS_STARTED,
54 _reserved22: [u8; 0xac],
55#[doc = "0x200 - Shortcut register"]
56pub shorts: SHORTS,
57 _reserved23: [u8; 0xfc],
58#[doc = "0x300 - Enable or disable interrupt"]
59pub inten: INTEN,
60#[doc = "0x304 - Enable interrupt"]
61pub intenset: INTENSET,
62#[doc = "0x308 - Disable interrupt"]
63pub intenclr: INTENCLR,
64 _reserved26: [u8; 0xf8],
65#[doc = "0x404 - NFC Error Status register"]
66pub errorstatus: ERRORSTATUS,
67 _reserved27: [u8; 0x04],
68#[doc = "0x40c - Unspecified"]
69pub framestatus: FRAMESTATUS,
70#[doc = "0x410 - NfcTag state register"]
71pub nfctagstate: NFCTAGSTATE,
72 _reserved29: [u8; 0x0c],
73#[doc = "0x420 - Sleep state during automatic collision resolution"]
74pub sleepstate: SLEEPSTATE,
75 _reserved30: [u8; 0x18],
76#[doc = "0x43c - Indicates the presence or not of a valid field"]
77pub fieldpresent: FIELDPRESENT,
78 _reserved31: [u8; 0xc4],
79#[doc = "0x504 - Minimum frame delay"]
80pub framedelaymin: FRAMEDELAYMIN,
81#[doc = "0x508 - Maximum frame delay"]
82pub framedelaymax: FRAMEDELAYMAX,
83#[doc = "0x50c - Configuration register for the Frame Delay Timer"]
84pub framedelaymode: FRAMEDELAYMODE,
85#[doc = "0x510 - Packet pointer for TXD and RXD data storage in Data RAM"]
86pub packetptr: PACKETPTR,
87#[doc = "0x514 - Size of the RAM buffer allocated to TXD and RXD data storage each"]
88pub maxlen: MAXLEN,
89#[doc = "0x518..0x520 - Unspecified"]
90pub txd: TXD,
91#[doc = "0x520..0x528 - Unspecified"]
92pub rxd: RXD,
93 _reserved38: [u8; 0x68],
94#[doc = "0x590 - Last NFCID1 part (4, 7 or 10 bytes ID)"]
95pub nfcid1_last: NFCID1_LAST,
96#[doc = "0x594 - Second last NFCID1 part (7 or 10 bytes ID)"]
97pub nfcid1_2nd_last: NFCID1_2ND_LAST,
98#[doc = "0x598 - Third last NFCID1 part (10 bytes ID)"]
99pub nfcid1_3rd_last: NFCID1_3RD_LAST,
100#[doc = "0x59c - Controls the auto collision resolution function. This setting must be done before the NFCT peripheral is enabled."]
101pub autocolresconfig: AUTOCOLRESCONFIG,
102#[doc = "0x5a0 - NFC-A SENS_RES auto-response settings"]
103pub sensres: SENSRES,
104#[doc = "0x5a4 - NFC-A SEL_RES auto-response settings"]
105pub selres: SELRES,
106}
107#[doc = "TASKS_ACTIVATE (w) register accessor: an alias for `Reg<TASKS_ACTIVATE_SPEC>`"]
108pub type TASKS_ACTIVATE = crate::Reg<tasks_activate::TASKS_ACTIVATE_SPEC>;
109#[doc = "Activate NFCT peripheral for incoming and outgoing frames, change state to activated"]
110pub mod tasks_activate;
111#[doc = "TASKS_DISABLE (w) register accessor: an alias for `Reg<TASKS_DISABLE_SPEC>`"]
112pub type TASKS_DISABLE = crate::Reg<tasks_disable::TASKS_DISABLE_SPEC>;
113#[doc = "Disable NFCT peripheral"]
114pub mod tasks_disable;
115#[doc = "TASKS_SENSE (w) register accessor: an alias for `Reg<TASKS_SENSE_SPEC>`"]
116pub type TASKS_SENSE = crate::Reg<tasks_sense::TASKS_SENSE_SPEC>;
117#[doc = "Enable NFC sense field mode, change state to sense mode"]
118pub mod tasks_sense;
119#[doc = "TASKS_STARTTX (w) register accessor: an alias for `Reg<TASKS_STARTTX_SPEC>`"]
120pub type TASKS_STARTTX = crate::Reg<tasks_starttx::TASKS_STARTTX_SPEC>;
121#[doc = "Start transmission of an outgoing frame, change state to transmit"]
122pub mod tasks_starttx;
123#[doc = "TASKS_ENABLERXDATA (w) register accessor: an alias for `Reg<TASKS_ENABLERXDATA_SPEC>`"]
124pub type TASKS_ENABLERXDATA = crate::Reg<tasks_enablerxdata::TASKS_ENABLERXDATA_SPEC>;
125#[doc = "Initializes the EasyDMA for receive."]
126pub mod tasks_enablerxdata;
127#[doc = "TASKS_GOIDLE (w) register accessor: an alias for `Reg<TASKS_GOIDLE_SPEC>`"]
128pub type TASKS_GOIDLE = crate::Reg<tasks_goidle::TASKS_GOIDLE_SPEC>;
129#[doc = "Force state machine to IDLE state"]
130pub mod tasks_goidle;
131#[doc = "TASKS_GOSLEEP (w) register accessor: an alias for `Reg<TASKS_GOSLEEP_SPEC>`"]
132pub type TASKS_GOSLEEP = crate::Reg<tasks_gosleep::TASKS_GOSLEEP_SPEC>;
133#[doc = "Force state machine to SLEEP_A state"]
134pub mod tasks_gosleep;
135#[doc = "EVENTS_READY (rw) register accessor: an alias for `Reg<EVENTS_READY_SPEC>`"]
136pub type EVENTS_READY = crate::Reg<events_ready::EVENTS_READY_SPEC>;
137#[doc = "The NFCT peripheral is ready to receive and send frames"]
138pub mod events_ready;
139#[doc = "EVENTS_FIELDDETECTED (rw) register accessor: an alias for `Reg<EVENTS_FIELDDETECTED_SPEC>`"]
140pub type EVENTS_FIELDDETECTED = crate::Reg<events_fielddetected::EVENTS_FIELDDETECTED_SPEC>;
141#[doc = "Remote NFC field detected"]
142pub mod events_fielddetected;
143#[doc = "EVENTS_FIELDLOST (rw) register accessor: an alias for `Reg<EVENTS_FIELDLOST_SPEC>`"]
144pub type EVENTS_FIELDLOST = crate::Reg<events_fieldlost::EVENTS_FIELDLOST_SPEC>;
145#[doc = "Remote NFC field lost"]
146pub mod events_fieldlost;
147#[doc = "EVENTS_TXFRAMESTART (rw) register accessor: an alias for `Reg<EVENTS_TXFRAMESTART_SPEC>`"]
148pub type EVENTS_TXFRAMESTART = crate::Reg<events_txframestart::EVENTS_TXFRAMESTART_SPEC>;
149#[doc = "Marks the start of the first symbol of a transmitted frame"]
150pub mod events_txframestart;
151#[doc = "EVENTS_TXFRAMEEND (rw) register accessor: an alias for `Reg<EVENTS_TXFRAMEEND_SPEC>`"]
152pub type EVENTS_TXFRAMEEND = crate::Reg<events_txframeend::EVENTS_TXFRAMEEND_SPEC>;
153#[doc = "Marks the end of the last transmitted on-air symbol of a frame"]
154pub mod events_txframeend;
155#[doc = "EVENTS_RXFRAMESTART (rw) register accessor: an alias for `Reg<EVENTS_RXFRAMESTART_SPEC>`"]
156pub type EVENTS_RXFRAMESTART = crate::Reg<events_rxframestart::EVENTS_RXFRAMESTART_SPEC>;
157#[doc = "Marks the end of the first symbol of a received frame"]
158pub mod events_rxframestart;
159#[doc = "EVENTS_RXFRAMEEND (rw) register accessor: an alias for `Reg<EVENTS_RXFRAMEEND_SPEC>`"]
160pub type EVENTS_RXFRAMEEND = crate::Reg<events_rxframeend::EVENTS_RXFRAMEEND_SPEC>;
161#[doc = "Received data has been checked (CRC, parity) and transferred to RAM, and EasyDMA has ended accessing the RX buffer"]
162pub mod events_rxframeend;
163#[doc = "EVENTS_ERROR (rw) register accessor: an alias for `Reg<EVENTS_ERROR_SPEC>`"]
164pub type EVENTS_ERROR = crate::Reg<events_error::EVENTS_ERROR_SPEC>;
165#[doc = "NFC error reported. The ERRORSTATUS register contains details on the source of the error."]
166pub mod events_error;
167#[doc = "EVENTS_RXERROR (rw) register accessor: an alias for `Reg<EVENTS_RXERROR_SPEC>`"]
168pub type EVENTS_RXERROR = crate::Reg<events_rxerror::EVENTS_RXERROR_SPEC>;
169#[doc = "NFC RX frame error reported. The FRAMESTATUS.RX register contains details on the source of the error."]
170pub mod events_rxerror;
171#[doc = "EVENTS_ENDRX (rw) register accessor: an alias for `Reg<EVENTS_ENDRX_SPEC>`"]
172pub type EVENTS_ENDRX = crate::Reg<events_endrx::EVENTS_ENDRX_SPEC>;
173#[doc = "RX buffer (as defined by PACKETPTR and MAXLEN) in Data RAM full."]
174pub mod events_endrx;
175#[doc = "EVENTS_ENDTX (rw) register accessor: an alias for `Reg<EVENTS_ENDTX_SPEC>`"]
176pub type EVENTS_ENDTX = crate::Reg<events_endtx::EVENTS_ENDTX_SPEC>;
177#[doc = "Transmission of data in RAM has ended, and EasyDMA has ended accessing the TX buffer"]
178pub mod events_endtx;
179#[doc = "EVENTS_AUTOCOLRESSTARTED (rw) register accessor: an alias for `Reg<EVENTS_AUTOCOLRESSTARTED_SPEC>`"]
180pub type EVENTS_AUTOCOLRESSTARTED =
181crate::Reg<events_autocolresstarted::EVENTS_AUTOCOLRESSTARTED_SPEC>;
182#[doc = "Auto collision resolution process has started"]
183pub mod events_autocolresstarted;
184#[doc = "EVENTS_COLLISION (rw) register accessor: an alias for `Reg<EVENTS_COLLISION_SPEC>`"]
185pub type EVENTS_COLLISION = crate::Reg<events_collision::EVENTS_COLLISION_SPEC>;
186#[doc = "NFC auto collision resolution error reported."]
187pub mod events_collision;
188#[doc = "EVENTS_SELECTED (rw) register accessor: an alias for `Reg<EVENTS_SELECTED_SPEC>`"]
189pub type EVENTS_SELECTED = crate::Reg<events_selected::EVENTS_SELECTED_SPEC>;
190#[doc = "NFC auto collision resolution successfully completed"]
191pub mod events_selected;
192#[doc = "EVENTS_STARTED (rw) register accessor: an alias for `Reg<EVENTS_STARTED_SPEC>`"]
193pub type EVENTS_STARTED = crate::Reg<events_started::EVENTS_STARTED_SPEC>;
194#[doc = "EasyDMA is ready to receive or send frames."]
195pub mod events_started;
196#[doc = "SHORTS (rw) register accessor: an alias for `Reg<SHORTS_SPEC>`"]
197pub type SHORTS = crate::Reg<shorts::SHORTS_SPEC>;
198#[doc = "Shortcut register"]
199pub mod shorts;
200#[doc = "INTEN (rw) register accessor: an alias for `Reg<INTEN_SPEC>`"]
201pub type INTEN = crate::Reg<inten::INTEN_SPEC>;
202#[doc = "Enable or disable interrupt"]
203pub mod inten;
204#[doc = "INTENSET (rw) register accessor: an alias for `Reg<INTENSET_SPEC>`"]
205pub type INTENSET = crate::Reg<intenset::INTENSET_SPEC>;
206#[doc = "Enable interrupt"]
207pub mod intenset;
208#[doc = "INTENCLR (rw) register accessor: an alias for `Reg<INTENCLR_SPEC>`"]
209pub type INTENCLR = crate::Reg<intenclr::INTENCLR_SPEC>;
210#[doc = "Disable interrupt"]
211pub mod intenclr;
212#[doc = "ERRORSTATUS (rw) register accessor: an alias for `Reg<ERRORSTATUS_SPEC>`"]
213pub type ERRORSTATUS = crate::Reg<errorstatus::ERRORSTATUS_SPEC>;
214#[doc = "NFC Error Status register"]
215pub mod errorstatus;
216#[doc = "Unspecified"]
217pub use framestatus::FRAMESTATUS;
218#[doc = r"Cluster"]
219#[doc = "Unspecified"]
220pub mod framestatus;
221#[doc = "NFCTAGSTATE (r) register accessor: an alias for `Reg<NFCTAGSTATE_SPEC>`"]
222pub type NFCTAGSTATE = crate::Reg<nfctagstate::NFCTAGSTATE_SPEC>;
223#[doc = "NfcTag state register"]
224pub mod nfctagstate;
225#[doc = "SLEEPSTATE (r) register accessor: an alias for `Reg<SLEEPSTATE_SPEC>`"]
226pub type SLEEPSTATE = crate::Reg<sleepstate::SLEEPSTATE_SPEC>;
227#[doc = "Sleep state during automatic collision resolution"]
228pub mod sleepstate;
229#[doc = "FIELDPRESENT (r) register accessor: an alias for `Reg<FIELDPRESENT_SPEC>`"]
230pub type FIELDPRESENT = crate::Reg<fieldpresent::FIELDPRESENT_SPEC>;
231#[doc = "Indicates the presence or not of a valid field"]
232pub mod fieldpresent;
233#[doc = "FRAMEDELAYMIN (rw) register accessor: an alias for `Reg<FRAMEDELAYMIN_SPEC>`"]
234pub type FRAMEDELAYMIN = crate::Reg<framedelaymin::FRAMEDELAYMIN_SPEC>;
235#[doc = "Minimum frame delay"]
236pub mod framedelaymin;
237#[doc = "FRAMEDELAYMAX (rw) register accessor: an alias for `Reg<FRAMEDELAYMAX_SPEC>`"]
238pub type FRAMEDELAYMAX = crate::Reg<framedelaymax::FRAMEDELAYMAX_SPEC>;
239#[doc = "Maximum frame delay"]
240pub mod framedelaymax;
241#[doc = "FRAMEDELAYMODE (rw) register accessor: an alias for `Reg<FRAMEDELAYMODE_SPEC>`"]
242pub type FRAMEDELAYMODE = crate::Reg<framedelaymode::FRAMEDELAYMODE_SPEC>;
243#[doc = "Configuration register for the Frame Delay Timer"]
244pub mod framedelaymode;
245#[doc = "PACKETPTR (rw) register accessor: an alias for `Reg<PACKETPTR_SPEC>`"]
246pub type PACKETPTR = crate::Reg<packetptr::PACKETPTR_SPEC>;
247#[doc = "Packet pointer for TXD and RXD data storage in Data RAM"]
248pub mod packetptr;
249#[doc = "MAXLEN (rw) register accessor: an alias for `Reg<MAXLEN_SPEC>`"]
250pub type MAXLEN = crate::Reg<maxlen::MAXLEN_SPEC>;
251#[doc = "Size of the RAM buffer allocated to TXD and RXD data storage each"]
252pub mod maxlen;
253#[doc = "Unspecified"]
254pub use txd::TXD;
255#[doc = r"Cluster"]
256#[doc = "Unspecified"]
257pub mod txd;
258#[doc = "Unspecified"]
259pub use rxd::RXD;
260#[doc = r"Cluster"]
261#[doc = "Unspecified"]
262pub mod rxd;
263#[doc = "NFCID1_LAST (rw) register accessor: an alias for `Reg<NFCID1_LAST_SPEC>`"]
264pub type NFCID1_LAST = crate::Reg<nfcid1_last::NFCID1_LAST_SPEC>;
265#[doc = "Last NFCID1 part (4, 7 or 10 bytes ID)"]
266pub mod nfcid1_last;
267#[doc = "NFCID1_2ND_LAST (rw) register accessor: an alias for `Reg<NFCID1_2ND_LAST_SPEC>`"]
268pub type NFCID1_2ND_LAST = crate::Reg<nfcid1_2nd_last::NFCID1_2ND_LAST_SPEC>;
269#[doc = "Second last NFCID1 part (7 or 10 bytes ID)"]
270pub mod nfcid1_2nd_last;
271#[doc = "NFCID1_3RD_LAST (rw) register accessor: an alias for `Reg<NFCID1_3RD_LAST_SPEC>`"]
272pub type NFCID1_3RD_LAST = crate::Reg<nfcid1_3rd_last::NFCID1_3RD_LAST_SPEC>;
273#[doc = "Third last NFCID1 part (10 bytes ID)"]
274pub mod nfcid1_3rd_last;
275#[doc = "AUTOCOLRESCONFIG (rw) register accessor: an alias for `Reg<AUTOCOLRESCONFIG_SPEC>`"]
276pub type AUTOCOLRESCONFIG = crate::Reg<autocolresconfig::AUTOCOLRESCONFIG_SPEC>;
277#[doc = "Controls the auto collision resolution function. This setting must be done before the NFCT peripheral is enabled."]
278pub mod autocolresconfig;
279#[doc = "SENSRES (rw) register accessor: an alias for `Reg<SENSRES_SPEC>`"]
280pub type SENSRES = crate::Reg<sensres::SENSRES_SPEC>;
281#[doc = "NFC-A SENS_RES auto-response settings"]
282pub mod sensres;
283#[doc = "SELRES (rw) register accessor: an alias for `Reg<SELRES_SPEC>`"]
284pub type SELRES = crate::Reg<selres::SELRES_SPEC>;
285#[doc = "NFC-A SEL_RES auto-response settings"]
286pub mod selres;