nrf52811_pac/
radio.rs

1#[doc = r"Register block"]
2#[repr(C)]
3pub struct RegisterBlock {
4    #[doc = "0x00 - Enable RADIO in TX mode"]
5    pub tasks_txen: TASKS_TXEN,
6    #[doc = "0x04 - Enable RADIO in RX mode"]
7    pub tasks_rxen: TASKS_RXEN,
8    #[doc = "0x08 - Start RADIO"]
9    pub tasks_start: TASKS_START,
10    #[doc = "0x0c - Stop RADIO"]
11    pub tasks_stop: TASKS_STOP,
12    #[doc = "0x10 - Disable RADIO"]
13    pub tasks_disable: TASKS_DISABLE,
14    #[doc = "0x14 - Start the RSSI and take one single sample of the receive signal strength"]
15    pub tasks_rssistart: TASKS_RSSISTART,
16    #[doc = "0x18 - Stop the RSSI measurement"]
17    pub tasks_rssistop: TASKS_RSSISTOP,
18    #[doc = "0x1c - Start the bit counter"]
19    pub tasks_bcstart: TASKS_BCSTART,
20    #[doc = "0x20 - Stop the bit counter"]
21    pub tasks_bcstop: TASKS_BCSTOP,
22    #[doc = "0x24 - Start the energy detect measurement used in IEEE 802.15.4 mode"]
23    pub tasks_edstart: TASKS_EDSTART,
24    #[doc = "0x28 - Stop the energy detect measurement"]
25    pub tasks_edstop: TASKS_EDSTOP,
26    #[doc = "0x2c - Start the clear channel assessment used in IEEE 802.15.4 mode"]
27    pub tasks_ccastart: TASKS_CCASTART,
28    #[doc = "0x30 - Stop the clear channel assessment"]
29    pub tasks_ccastop: TASKS_CCASTOP,
30    _reserved13: [u8; 0xcc],
31    #[doc = "0x100 - RADIO has ramped up and is ready to be started"]
32    pub events_ready: EVENTS_READY,
33    #[doc = "0x104 - Address sent or received"]
34    pub events_address: EVENTS_ADDRESS,
35    #[doc = "0x108 - Packet payload sent or received"]
36    pub events_payload: EVENTS_PAYLOAD,
37    #[doc = "0x10c - Packet sent or received"]
38    pub events_end: EVENTS_END,
39    #[doc = "0x110 - RADIO has been disabled"]
40    pub events_disabled: EVENTS_DISABLED,
41    #[doc = "0x114 - A device address match occurred on the last received packet"]
42    pub events_devmatch: EVENTS_DEVMATCH,
43    #[doc = "0x118 - No device address match occurred on the last received packet"]
44    pub events_devmiss: EVENTS_DEVMISS,
45    #[doc = "0x11c - Sampling of receive signal strength complete"]
46    pub events_rssiend: EVENTS_RSSIEND,
47    _reserved21: [u8; 0x08],
48    #[doc = "0x128 - Bit counter reached bit count value"]
49    pub events_bcmatch: EVENTS_BCMATCH,
50    _reserved22: [u8; 0x04],
51    #[doc = "0x130 - Packet received with CRC ok"]
52    pub events_crcok: EVENTS_CRCOK,
53    #[doc = "0x134 - Packet received with CRC error"]
54    pub events_crcerror: EVENTS_CRCERROR,
55    #[doc = "0x138 - IEEE 802.15.4 length field received"]
56    pub events_framestart: EVENTS_FRAMESTART,
57    #[doc = "0x13c - Sampling of energy detection complete. A new ED sample is ready for readout from the RADIO.EDSAMPLE register"]
58    pub events_edend: EVENTS_EDEND,
59    #[doc = "0x140 - The sampling of energy detection has stopped"]
60    pub events_edstopped: EVENTS_EDSTOPPED,
61    #[doc = "0x144 - Wireless medium in idle - clear to send"]
62    pub events_ccaidle: EVENTS_CCAIDLE,
63    #[doc = "0x148 - Wireless medium busy - do not send"]
64    pub events_ccabusy: EVENTS_CCABUSY,
65    #[doc = "0x14c - The CCA has stopped"]
66    pub events_ccastopped: EVENTS_CCASTOPPED,
67    #[doc = "0x150 - Ble_LR CI field received, receive mode is changed from Ble_LR125Kbit to Ble_LR500Kbit."]
68    pub events_rateboost: EVENTS_RATEBOOST,
69    #[doc = "0x154 - RADIO has ramped up and is ready to be started TX path"]
70    pub events_txready: EVENTS_TXREADY,
71    #[doc = "0x158 - RADIO has ramped up and is ready to be started RX path"]
72    pub events_rxready: EVENTS_RXREADY,
73    #[doc = "0x15c - MAC header match found"]
74    pub events_mhrmatch: EVENTS_MHRMATCH,
75    _reserved34: [u8; 0x0c],
76    #[doc = "0x16c - Generated when last bit is sent on air"]
77    pub events_phyend: EVENTS_PHYEND,
78    #[doc = "0x170 - CTE is present (early warning right after receiving CTEInfo byte)"]
79    pub events_ctepresent: EVENTS_CTEPRESENT,
80    _reserved36: [u8; 0x8c],
81    #[doc = "0x200 - Shortcuts between local events and tasks"]
82    pub shorts: SHORTS,
83    _reserved37: [u8; 0x0100],
84    #[doc = "0x304 - Enable interrupt"]
85    pub intenset: INTENSET,
86    #[doc = "0x308 - Disable interrupt"]
87    pub intenclr: INTENCLR,
88    _reserved39: [u8; 0xf4],
89    #[doc = "0x400 - CRC status"]
90    pub crcstatus: CRCSTATUS,
91    _reserved40: [u8; 0x04],
92    #[doc = "0x408 - Received address"]
93    pub rxmatch: RXMATCH,
94    #[doc = "0x40c - CRC field of previously received packet"]
95    pub rxcrc: RXCRC,
96    #[doc = "0x410 - Device address match index"]
97    pub dai: DAI,
98    #[doc = "0x414 - Payload status"]
99    pub pdustat: PDUSTAT,
100    _reserved44: [u8; 0x34],
101    #[doc = "0x44c - CTEInfo parsed from received packet"]
102    pub ctestatus: CTESTATUS,
103    _reserved45: [u8; 0x08],
104    #[doc = "0x458 - DFE status information"]
105    pub dfestatus: DFESTATUS,
106    _reserved46: [u8; 0xa8],
107    #[doc = "0x504 - Packet pointer"]
108    pub packetptr: PACKETPTR,
109    #[doc = "0x508 - Frequency"]
110    pub frequency: FREQUENCY,
111    #[doc = "0x50c - Output power"]
112    pub txpower: TXPOWER,
113    #[doc = "0x510 - Data rate and modulation"]
114    pub mode: MODE,
115    #[doc = "0x514 - Packet configuration register 0"]
116    pub pcnf0: PCNF0,
117    #[doc = "0x518 - Packet configuration register 1"]
118    pub pcnf1: PCNF1,
119    #[doc = "0x51c - Base address 0"]
120    pub base0: BASE0,
121    #[doc = "0x520 - Base address 1"]
122    pub base1: BASE1,
123    #[doc = "0x524 - Prefixes bytes for logical addresses 0-3"]
124    pub prefix0: PREFIX0,
125    #[doc = "0x528 - Prefixes bytes for logical addresses 4-7"]
126    pub prefix1: PREFIX1,
127    #[doc = "0x52c - Transmit address select"]
128    pub txaddress: TXADDRESS,
129    #[doc = "0x530 - Receive address select"]
130    pub rxaddresses: RXADDRESSES,
131    #[doc = "0x534 - CRC configuration"]
132    pub crccnf: CRCCNF,
133    #[doc = "0x538 - CRC polynomial"]
134    pub crcpoly: CRCPOLY,
135    #[doc = "0x53c - CRC initial value"]
136    pub crcinit: CRCINIT,
137    _reserved61: [u8; 0x04],
138    #[doc = "0x544 - Interframe spacing in us"]
139    pub tifs: TIFS,
140    #[doc = "0x548 - RSSI sample"]
141    pub rssisample: RSSISAMPLE,
142    _reserved63: [u8; 0x04],
143    #[doc = "0x550 - Current radio state"]
144    pub state: STATE,
145    #[doc = "0x554 - Data whitening initial value"]
146    pub datawhiteiv: DATAWHITEIV,
147    _reserved65: [u8; 0x08],
148    #[doc = "0x560 - Bit counter compare"]
149    pub bcc: BCC,
150    _reserved66: [u8; 0x9c],
151    #[doc = "0x600..0x620 - Description collection: Device address base segment n"]
152    pub dab: [DAB; 8],
153    #[doc = "0x620..0x640 - Description collection: Device address prefix n"]
154    pub dap: [DAP; 8],
155    #[doc = "0x640 - Device address match configuration"]
156    pub dacnf: DACNF,
157    #[doc = "0x644 - Search pattern configuration"]
158    pub mhrmatchconf: MHRMATCHCONF,
159    #[doc = "0x648 - Pattern mask"]
160    pub mhrmatchmas: MHRMATCHMAS,
161    _reserved71: [u8; 0x04],
162    #[doc = "0x650 - Radio mode configuration register 0"]
163    pub modecnf0: MODECNF0,
164    _reserved72: [u8; 0x0c],
165    #[doc = "0x660 - IEEE 802.15.4 start of frame delimiter"]
166    pub sfd: SFD,
167    #[doc = "0x664 - IEEE 802.15.4 energy detect loop count"]
168    pub edcnt: EDCNT,
169    #[doc = "0x668 - IEEE 802.15.4 energy detect level"]
170    pub edsample: EDSAMPLE,
171    #[doc = "0x66c - IEEE 802.15.4 clear channel assessment control"]
172    pub ccactrl: CCACTRL,
173    _reserved76: [u8; 0x0290],
174    #[doc = "0x900 - Whether to use Angle-of-Arrival (AOA) or Angle-of-Departure (AOD)"]
175    pub dfemode: DFEMODE,
176    #[doc = "0x904 - Configuration for CTE inline mode"]
177    pub cteinlineconf: CTEINLINECONF,
178    _reserved78: [u8; 0x08],
179    #[doc = "0x910 - Various configuration for Direction finding"]
180    pub dfectrl1: DFECTRL1,
181    #[doc = "0x914 - Start offset for Direction finding"]
182    pub dfectrl2: DFECTRL2,
183    _reserved80: [u8; 0x10],
184    #[doc = "0x928 - GPIO patterns to be used for each antenna"]
185    pub switchpattern: SWITCHPATTERN,
186    #[doc = "0x92c - Clear the GPIO pattern array for antenna control"]
187    pub clearpattern: CLEARPATTERN,
188    #[doc = "0x930..0x950 - Unspecified"]
189    pub psel: PSEL,
190    #[doc = "0x950..0x95c - DFE packet EasyDMA channel"]
191    pub dfepacket: DFEPACKET,
192    _reserved84: [u8; 0x06a0],
193    #[doc = "0xffc - Peripheral power control"]
194    pub power: POWER,
195}
196#[doc = "TASKS_TXEN (w) register accessor: an alias for `Reg<TASKS_TXEN_SPEC>`"]
197pub type TASKS_TXEN = crate::Reg<tasks_txen::TASKS_TXEN_SPEC>;
198#[doc = "Enable RADIO in TX mode"]
199pub mod tasks_txen;
200#[doc = "TASKS_RXEN (w) register accessor: an alias for `Reg<TASKS_RXEN_SPEC>`"]
201pub type TASKS_RXEN = crate::Reg<tasks_rxen::TASKS_RXEN_SPEC>;
202#[doc = "Enable RADIO in RX mode"]
203pub mod tasks_rxen;
204#[doc = "TASKS_START (w) register accessor: an alias for `Reg<TASKS_START_SPEC>`"]
205pub type TASKS_START = crate::Reg<tasks_start::TASKS_START_SPEC>;
206#[doc = "Start RADIO"]
207pub mod tasks_start;
208#[doc = "TASKS_STOP (w) register accessor: an alias for `Reg<TASKS_STOP_SPEC>`"]
209pub type TASKS_STOP = crate::Reg<tasks_stop::TASKS_STOP_SPEC>;
210#[doc = "Stop RADIO"]
211pub mod tasks_stop;
212#[doc = "TASKS_DISABLE (w) register accessor: an alias for `Reg<TASKS_DISABLE_SPEC>`"]
213pub type TASKS_DISABLE = crate::Reg<tasks_disable::TASKS_DISABLE_SPEC>;
214#[doc = "Disable RADIO"]
215pub mod tasks_disable;
216#[doc = "TASKS_RSSISTART (w) register accessor: an alias for `Reg<TASKS_RSSISTART_SPEC>`"]
217pub type TASKS_RSSISTART = crate::Reg<tasks_rssistart::TASKS_RSSISTART_SPEC>;
218#[doc = "Start the RSSI and take one single sample of the receive signal strength"]
219pub mod tasks_rssistart;
220#[doc = "TASKS_RSSISTOP (w) register accessor: an alias for `Reg<TASKS_RSSISTOP_SPEC>`"]
221pub type TASKS_RSSISTOP = crate::Reg<tasks_rssistop::TASKS_RSSISTOP_SPEC>;
222#[doc = "Stop the RSSI measurement"]
223pub mod tasks_rssistop;
224#[doc = "TASKS_BCSTART (w) register accessor: an alias for `Reg<TASKS_BCSTART_SPEC>`"]
225pub type TASKS_BCSTART = crate::Reg<tasks_bcstart::TASKS_BCSTART_SPEC>;
226#[doc = "Start the bit counter"]
227pub mod tasks_bcstart;
228#[doc = "TASKS_BCSTOP (w) register accessor: an alias for `Reg<TASKS_BCSTOP_SPEC>`"]
229pub type TASKS_BCSTOP = crate::Reg<tasks_bcstop::TASKS_BCSTOP_SPEC>;
230#[doc = "Stop the bit counter"]
231pub mod tasks_bcstop;
232#[doc = "TASKS_EDSTART (w) register accessor: an alias for `Reg<TASKS_EDSTART_SPEC>`"]
233pub type TASKS_EDSTART = crate::Reg<tasks_edstart::TASKS_EDSTART_SPEC>;
234#[doc = "Start the energy detect measurement used in IEEE 802.15.4 mode"]
235pub mod tasks_edstart;
236#[doc = "TASKS_EDSTOP (w) register accessor: an alias for `Reg<TASKS_EDSTOP_SPEC>`"]
237pub type TASKS_EDSTOP = crate::Reg<tasks_edstop::TASKS_EDSTOP_SPEC>;
238#[doc = "Stop the energy detect measurement"]
239pub mod tasks_edstop;
240#[doc = "TASKS_CCASTART (w) register accessor: an alias for `Reg<TASKS_CCASTART_SPEC>`"]
241pub type TASKS_CCASTART = crate::Reg<tasks_ccastart::TASKS_CCASTART_SPEC>;
242#[doc = "Start the clear channel assessment used in IEEE 802.15.4 mode"]
243pub mod tasks_ccastart;
244#[doc = "TASKS_CCASTOP (w) register accessor: an alias for `Reg<TASKS_CCASTOP_SPEC>`"]
245pub type TASKS_CCASTOP = crate::Reg<tasks_ccastop::TASKS_CCASTOP_SPEC>;
246#[doc = "Stop the clear channel assessment"]
247pub mod tasks_ccastop;
248#[doc = "EVENTS_READY (rw) register accessor: an alias for `Reg<EVENTS_READY_SPEC>`"]
249pub type EVENTS_READY = crate::Reg<events_ready::EVENTS_READY_SPEC>;
250#[doc = "RADIO has ramped up and is ready to be started"]
251pub mod events_ready;
252#[doc = "EVENTS_ADDRESS (rw) register accessor: an alias for `Reg<EVENTS_ADDRESS_SPEC>`"]
253pub type EVENTS_ADDRESS = crate::Reg<events_address::EVENTS_ADDRESS_SPEC>;
254#[doc = "Address sent or received"]
255pub mod events_address;
256#[doc = "EVENTS_PAYLOAD (rw) register accessor: an alias for `Reg<EVENTS_PAYLOAD_SPEC>`"]
257pub type EVENTS_PAYLOAD = crate::Reg<events_payload::EVENTS_PAYLOAD_SPEC>;
258#[doc = "Packet payload sent or received"]
259pub mod events_payload;
260#[doc = "EVENTS_END (rw) register accessor: an alias for `Reg<EVENTS_END_SPEC>`"]
261pub type EVENTS_END = crate::Reg<events_end::EVENTS_END_SPEC>;
262#[doc = "Packet sent or received"]
263pub mod events_end;
264#[doc = "EVENTS_DISABLED (rw) register accessor: an alias for `Reg<EVENTS_DISABLED_SPEC>`"]
265pub type EVENTS_DISABLED = crate::Reg<events_disabled::EVENTS_DISABLED_SPEC>;
266#[doc = "RADIO has been disabled"]
267pub mod events_disabled;
268#[doc = "EVENTS_DEVMATCH (rw) register accessor: an alias for `Reg<EVENTS_DEVMATCH_SPEC>`"]
269pub type EVENTS_DEVMATCH = crate::Reg<events_devmatch::EVENTS_DEVMATCH_SPEC>;
270#[doc = "A device address match occurred on the last received packet"]
271pub mod events_devmatch;
272#[doc = "EVENTS_DEVMISS (rw) register accessor: an alias for `Reg<EVENTS_DEVMISS_SPEC>`"]
273pub type EVENTS_DEVMISS = crate::Reg<events_devmiss::EVENTS_DEVMISS_SPEC>;
274#[doc = "No device address match occurred on the last received packet"]
275pub mod events_devmiss;
276#[doc = "EVENTS_RSSIEND (rw) register accessor: an alias for `Reg<EVENTS_RSSIEND_SPEC>`"]
277pub type EVENTS_RSSIEND = crate::Reg<events_rssiend::EVENTS_RSSIEND_SPEC>;
278#[doc = "Sampling of receive signal strength complete"]
279pub mod events_rssiend;
280#[doc = "EVENTS_BCMATCH (rw) register accessor: an alias for `Reg<EVENTS_BCMATCH_SPEC>`"]
281pub type EVENTS_BCMATCH = crate::Reg<events_bcmatch::EVENTS_BCMATCH_SPEC>;
282#[doc = "Bit counter reached bit count value"]
283pub mod events_bcmatch;
284#[doc = "EVENTS_CRCOK (rw) register accessor: an alias for `Reg<EVENTS_CRCOK_SPEC>`"]
285pub type EVENTS_CRCOK = crate::Reg<events_crcok::EVENTS_CRCOK_SPEC>;
286#[doc = "Packet received with CRC ok"]
287pub mod events_crcok;
288#[doc = "EVENTS_CRCERROR (rw) register accessor: an alias for `Reg<EVENTS_CRCERROR_SPEC>`"]
289pub type EVENTS_CRCERROR = crate::Reg<events_crcerror::EVENTS_CRCERROR_SPEC>;
290#[doc = "Packet received with CRC error"]
291pub mod events_crcerror;
292#[doc = "EVENTS_FRAMESTART (rw) register accessor: an alias for `Reg<EVENTS_FRAMESTART_SPEC>`"]
293pub type EVENTS_FRAMESTART = crate::Reg<events_framestart::EVENTS_FRAMESTART_SPEC>;
294#[doc = "IEEE 802.15.4 length field received"]
295pub mod events_framestart;
296#[doc = "EVENTS_EDEND (rw) register accessor: an alias for `Reg<EVENTS_EDEND_SPEC>`"]
297pub type EVENTS_EDEND = crate::Reg<events_edend::EVENTS_EDEND_SPEC>;
298#[doc = "Sampling of energy detection complete. A new ED sample is ready for readout from the RADIO.EDSAMPLE register"]
299pub mod events_edend;
300#[doc = "EVENTS_EDSTOPPED (rw) register accessor: an alias for `Reg<EVENTS_EDSTOPPED_SPEC>`"]
301pub type EVENTS_EDSTOPPED = crate::Reg<events_edstopped::EVENTS_EDSTOPPED_SPEC>;
302#[doc = "The sampling of energy detection has stopped"]
303pub mod events_edstopped;
304#[doc = "EVENTS_CCAIDLE (rw) register accessor: an alias for `Reg<EVENTS_CCAIDLE_SPEC>`"]
305pub type EVENTS_CCAIDLE = crate::Reg<events_ccaidle::EVENTS_CCAIDLE_SPEC>;
306#[doc = "Wireless medium in idle - clear to send"]
307pub mod events_ccaidle;
308#[doc = "EVENTS_CCABUSY (rw) register accessor: an alias for `Reg<EVENTS_CCABUSY_SPEC>`"]
309pub type EVENTS_CCABUSY = crate::Reg<events_ccabusy::EVENTS_CCABUSY_SPEC>;
310#[doc = "Wireless medium busy - do not send"]
311pub mod events_ccabusy;
312#[doc = "EVENTS_CCASTOPPED (rw) register accessor: an alias for `Reg<EVENTS_CCASTOPPED_SPEC>`"]
313pub type EVENTS_CCASTOPPED = crate::Reg<events_ccastopped::EVENTS_CCASTOPPED_SPEC>;
314#[doc = "The CCA has stopped"]
315pub mod events_ccastopped;
316#[doc = "EVENTS_RATEBOOST (rw) register accessor: an alias for `Reg<EVENTS_RATEBOOST_SPEC>`"]
317pub type EVENTS_RATEBOOST = crate::Reg<events_rateboost::EVENTS_RATEBOOST_SPEC>;
318#[doc = "Ble_LR CI field received, receive mode is changed from Ble_LR125Kbit to Ble_LR500Kbit."]
319pub mod events_rateboost;
320#[doc = "EVENTS_TXREADY (rw) register accessor: an alias for `Reg<EVENTS_TXREADY_SPEC>`"]
321pub type EVENTS_TXREADY = crate::Reg<events_txready::EVENTS_TXREADY_SPEC>;
322#[doc = "RADIO has ramped up and is ready to be started TX path"]
323pub mod events_txready;
324#[doc = "EVENTS_RXREADY (rw) register accessor: an alias for `Reg<EVENTS_RXREADY_SPEC>`"]
325pub type EVENTS_RXREADY = crate::Reg<events_rxready::EVENTS_RXREADY_SPEC>;
326#[doc = "RADIO has ramped up and is ready to be started RX path"]
327pub mod events_rxready;
328#[doc = "EVENTS_MHRMATCH (rw) register accessor: an alias for `Reg<EVENTS_MHRMATCH_SPEC>`"]
329pub type EVENTS_MHRMATCH = crate::Reg<events_mhrmatch::EVENTS_MHRMATCH_SPEC>;
330#[doc = "MAC header match found"]
331pub mod events_mhrmatch;
332#[doc = "EVENTS_PHYEND (rw) register accessor: an alias for `Reg<EVENTS_PHYEND_SPEC>`"]
333pub type EVENTS_PHYEND = crate::Reg<events_phyend::EVENTS_PHYEND_SPEC>;
334#[doc = "Generated when last bit is sent on air"]
335pub mod events_phyend;
336#[doc = "EVENTS_CTEPRESENT (rw) register accessor: an alias for `Reg<EVENTS_CTEPRESENT_SPEC>`"]
337pub type EVENTS_CTEPRESENT = crate::Reg<events_ctepresent::EVENTS_CTEPRESENT_SPEC>;
338#[doc = "CTE is present (early warning right after receiving CTEInfo byte)"]
339pub mod events_ctepresent;
340#[doc = "SHORTS (rw) register accessor: an alias for `Reg<SHORTS_SPEC>`"]
341pub type SHORTS = crate::Reg<shorts::SHORTS_SPEC>;
342#[doc = "Shortcuts between local events and tasks"]
343pub mod shorts;
344#[doc = "INTENSET (rw) register accessor: an alias for `Reg<INTENSET_SPEC>`"]
345pub type INTENSET = crate::Reg<intenset::INTENSET_SPEC>;
346#[doc = "Enable interrupt"]
347pub mod intenset;
348#[doc = "INTENCLR (rw) register accessor: an alias for `Reg<INTENCLR_SPEC>`"]
349pub type INTENCLR = crate::Reg<intenclr::INTENCLR_SPEC>;
350#[doc = "Disable interrupt"]
351pub mod intenclr;
352#[doc = "CRCSTATUS (r) register accessor: an alias for `Reg<CRCSTATUS_SPEC>`"]
353pub type CRCSTATUS = crate::Reg<crcstatus::CRCSTATUS_SPEC>;
354#[doc = "CRC status"]
355pub mod crcstatus;
356#[doc = "RXMATCH (r) register accessor: an alias for `Reg<RXMATCH_SPEC>`"]
357pub type RXMATCH = crate::Reg<rxmatch::RXMATCH_SPEC>;
358#[doc = "Received address"]
359pub mod rxmatch;
360#[doc = "RXCRC (r) register accessor: an alias for `Reg<RXCRC_SPEC>`"]
361pub type RXCRC = crate::Reg<rxcrc::RXCRC_SPEC>;
362#[doc = "CRC field of previously received packet"]
363pub mod rxcrc;
364#[doc = "DAI (r) register accessor: an alias for `Reg<DAI_SPEC>`"]
365pub type DAI = crate::Reg<dai::DAI_SPEC>;
366#[doc = "Device address match index"]
367pub mod dai;
368#[doc = "PDUSTAT (r) register accessor: an alias for `Reg<PDUSTAT_SPEC>`"]
369pub type PDUSTAT = crate::Reg<pdustat::PDUSTAT_SPEC>;
370#[doc = "Payload status"]
371pub mod pdustat;
372#[doc = "CTESTATUS (r) register accessor: an alias for `Reg<CTESTATUS_SPEC>`"]
373pub type CTESTATUS = crate::Reg<ctestatus::CTESTATUS_SPEC>;
374#[doc = "CTEInfo parsed from received packet"]
375pub mod ctestatus;
376#[doc = "DFESTATUS (r) register accessor: an alias for `Reg<DFESTATUS_SPEC>`"]
377pub type DFESTATUS = crate::Reg<dfestatus::DFESTATUS_SPEC>;
378#[doc = "DFE status information"]
379pub mod dfestatus;
380#[doc = "PACKETPTR (rw) register accessor: an alias for `Reg<PACKETPTR_SPEC>`"]
381pub type PACKETPTR = crate::Reg<packetptr::PACKETPTR_SPEC>;
382#[doc = "Packet pointer"]
383pub mod packetptr;
384#[doc = "FREQUENCY (rw) register accessor: an alias for `Reg<FREQUENCY_SPEC>`"]
385pub type FREQUENCY = crate::Reg<frequency::FREQUENCY_SPEC>;
386#[doc = "Frequency"]
387pub mod frequency;
388#[doc = "TXPOWER (rw) register accessor: an alias for `Reg<TXPOWER_SPEC>`"]
389pub type TXPOWER = crate::Reg<txpower::TXPOWER_SPEC>;
390#[doc = "Output power"]
391pub mod txpower;
392#[doc = "MODE (rw) register accessor: an alias for `Reg<MODE_SPEC>`"]
393pub type MODE = crate::Reg<mode::MODE_SPEC>;
394#[doc = "Data rate and modulation"]
395pub mod mode;
396#[doc = "PCNF0 (rw) register accessor: an alias for `Reg<PCNF0_SPEC>`"]
397pub type PCNF0 = crate::Reg<pcnf0::PCNF0_SPEC>;
398#[doc = "Packet configuration register 0"]
399pub mod pcnf0;
400#[doc = "PCNF1 (rw) register accessor: an alias for `Reg<PCNF1_SPEC>`"]
401pub type PCNF1 = crate::Reg<pcnf1::PCNF1_SPEC>;
402#[doc = "Packet configuration register 1"]
403pub mod pcnf1;
404#[doc = "BASE0 (rw) register accessor: an alias for `Reg<BASE0_SPEC>`"]
405pub type BASE0 = crate::Reg<base0::BASE0_SPEC>;
406#[doc = "Base address 0"]
407pub mod base0;
408#[doc = "BASE1 (rw) register accessor: an alias for `Reg<BASE1_SPEC>`"]
409pub type BASE1 = crate::Reg<base1::BASE1_SPEC>;
410#[doc = "Base address 1"]
411pub mod base1;
412#[doc = "PREFIX0 (rw) register accessor: an alias for `Reg<PREFIX0_SPEC>`"]
413pub type PREFIX0 = crate::Reg<prefix0::PREFIX0_SPEC>;
414#[doc = "Prefixes bytes for logical addresses 0-3"]
415pub mod prefix0;
416#[doc = "PREFIX1 (rw) register accessor: an alias for `Reg<PREFIX1_SPEC>`"]
417pub type PREFIX1 = crate::Reg<prefix1::PREFIX1_SPEC>;
418#[doc = "Prefixes bytes for logical addresses 4-7"]
419pub mod prefix1;
420#[doc = "TXADDRESS (rw) register accessor: an alias for `Reg<TXADDRESS_SPEC>`"]
421pub type TXADDRESS = crate::Reg<txaddress::TXADDRESS_SPEC>;
422#[doc = "Transmit address select"]
423pub mod txaddress;
424#[doc = "RXADDRESSES (rw) register accessor: an alias for `Reg<RXADDRESSES_SPEC>`"]
425pub type RXADDRESSES = crate::Reg<rxaddresses::RXADDRESSES_SPEC>;
426#[doc = "Receive address select"]
427pub mod rxaddresses;
428#[doc = "CRCCNF (rw) register accessor: an alias for `Reg<CRCCNF_SPEC>`"]
429pub type CRCCNF = crate::Reg<crccnf::CRCCNF_SPEC>;
430#[doc = "CRC configuration"]
431pub mod crccnf;
432#[doc = "CRCPOLY (rw) register accessor: an alias for `Reg<CRCPOLY_SPEC>`"]
433pub type CRCPOLY = crate::Reg<crcpoly::CRCPOLY_SPEC>;
434#[doc = "CRC polynomial"]
435pub mod crcpoly;
436#[doc = "CRCINIT (rw) register accessor: an alias for `Reg<CRCINIT_SPEC>`"]
437pub type CRCINIT = crate::Reg<crcinit::CRCINIT_SPEC>;
438#[doc = "CRC initial value"]
439pub mod crcinit;
440#[doc = "TIFS (rw) register accessor: an alias for `Reg<TIFS_SPEC>`"]
441pub type TIFS = crate::Reg<tifs::TIFS_SPEC>;
442#[doc = "Interframe spacing in us"]
443pub mod tifs;
444#[doc = "RSSISAMPLE (r) register accessor: an alias for `Reg<RSSISAMPLE_SPEC>`"]
445pub type RSSISAMPLE = crate::Reg<rssisample::RSSISAMPLE_SPEC>;
446#[doc = "RSSI sample"]
447pub mod rssisample;
448#[doc = "STATE (r) register accessor: an alias for `Reg<STATE_SPEC>`"]
449pub type STATE = crate::Reg<state::STATE_SPEC>;
450#[doc = "Current radio state"]
451pub mod state;
452#[doc = "DATAWHITEIV (rw) register accessor: an alias for `Reg<DATAWHITEIV_SPEC>`"]
453pub type DATAWHITEIV = crate::Reg<datawhiteiv::DATAWHITEIV_SPEC>;
454#[doc = "Data whitening initial value"]
455pub mod datawhiteiv;
456#[doc = "BCC (rw) register accessor: an alias for `Reg<BCC_SPEC>`"]
457pub type BCC = crate::Reg<bcc::BCC_SPEC>;
458#[doc = "Bit counter compare"]
459pub mod bcc;
460#[doc = "DAB (rw) register accessor: an alias for `Reg<DAB_SPEC>`"]
461pub type DAB = crate::Reg<dab::DAB_SPEC>;
462#[doc = "Description collection: Device address base segment n"]
463pub mod dab;
464#[doc = "DAP (rw) register accessor: an alias for `Reg<DAP_SPEC>`"]
465pub type DAP = crate::Reg<dap::DAP_SPEC>;
466#[doc = "Description collection: Device address prefix n"]
467pub mod dap;
468#[doc = "DACNF (rw) register accessor: an alias for `Reg<DACNF_SPEC>`"]
469pub type DACNF = crate::Reg<dacnf::DACNF_SPEC>;
470#[doc = "Device address match configuration"]
471pub mod dacnf;
472#[doc = "MHRMATCHCONF (rw) register accessor: an alias for `Reg<MHRMATCHCONF_SPEC>`"]
473pub type MHRMATCHCONF = crate::Reg<mhrmatchconf::MHRMATCHCONF_SPEC>;
474#[doc = "Search pattern configuration"]
475pub mod mhrmatchconf;
476#[doc = "MHRMATCHMAS (rw) register accessor: an alias for `Reg<MHRMATCHMAS_SPEC>`"]
477pub type MHRMATCHMAS = crate::Reg<mhrmatchmas::MHRMATCHMAS_SPEC>;
478#[doc = "Pattern mask"]
479pub mod mhrmatchmas;
480#[doc = "MODECNF0 (rw) register accessor: an alias for `Reg<MODECNF0_SPEC>`"]
481pub type MODECNF0 = crate::Reg<modecnf0::MODECNF0_SPEC>;
482#[doc = "Radio mode configuration register 0"]
483pub mod modecnf0;
484#[doc = "SFD (rw) register accessor: an alias for `Reg<SFD_SPEC>`"]
485pub type SFD = crate::Reg<sfd::SFD_SPEC>;
486#[doc = "IEEE 802.15.4 start of frame delimiter"]
487pub mod sfd;
488#[doc = "EDCNT (rw) register accessor: an alias for `Reg<EDCNT_SPEC>`"]
489pub type EDCNT = crate::Reg<edcnt::EDCNT_SPEC>;
490#[doc = "IEEE 802.15.4 energy detect loop count"]
491pub mod edcnt;
492#[doc = "EDSAMPLE (rw) register accessor: an alias for `Reg<EDSAMPLE_SPEC>`"]
493pub type EDSAMPLE = crate::Reg<edsample::EDSAMPLE_SPEC>;
494#[doc = "IEEE 802.15.4 energy detect level"]
495pub mod edsample;
496#[doc = "CCACTRL (rw) register accessor: an alias for `Reg<CCACTRL_SPEC>`"]
497pub type CCACTRL = crate::Reg<ccactrl::CCACTRL_SPEC>;
498#[doc = "IEEE 802.15.4 clear channel assessment control"]
499pub mod ccactrl;
500#[doc = "DFEMODE (rw) register accessor: an alias for `Reg<DFEMODE_SPEC>`"]
501pub type DFEMODE = crate::Reg<dfemode::DFEMODE_SPEC>;
502#[doc = "Whether to use Angle-of-Arrival (AOA) or Angle-of-Departure (AOD)"]
503pub mod dfemode;
504#[doc = "CTEINLINECONF (rw) register accessor: an alias for `Reg<CTEINLINECONF_SPEC>`"]
505pub type CTEINLINECONF = crate::Reg<cteinlineconf::CTEINLINECONF_SPEC>;
506#[doc = "Configuration for CTE inline mode"]
507pub mod cteinlineconf;
508#[doc = "DFECTRL1 (rw) register accessor: an alias for `Reg<DFECTRL1_SPEC>`"]
509pub type DFECTRL1 = crate::Reg<dfectrl1::DFECTRL1_SPEC>;
510#[doc = "Various configuration for Direction finding"]
511pub mod dfectrl1;
512#[doc = "DFECTRL2 (rw) register accessor: an alias for `Reg<DFECTRL2_SPEC>`"]
513pub type DFECTRL2 = crate::Reg<dfectrl2::DFECTRL2_SPEC>;
514#[doc = "Start offset for Direction finding"]
515pub mod dfectrl2;
516#[doc = "SWITCHPATTERN (rw) register accessor: an alias for `Reg<SWITCHPATTERN_SPEC>`"]
517pub type SWITCHPATTERN = crate::Reg<switchpattern::SWITCHPATTERN_SPEC>;
518#[doc = "GPIO patterns to be used for each antenna"]
519pub mod switchpattern;
520#[doc = "CLEARPATTERN (rw) register accessor: an alias for `Reg<CLEARPATTERN_SPEC>`"]
521pub type CLEARPATTERN = crate::Reg<clearpattern::CLEARPATTERN_SPEC>;
522#[doc = "Clear the GPIO pattern array for antenna control"]
523pub mod clearpattern;
524#[doc = "Unspecified"]
525pub use psel::PSEL;
526#[doc = r"Cluster"]
527#[doc = "Unspecified"]
528pub mod psel;
529#[doc = "DFE packet EasyDMA channel"]
530pub use dfepacket::DFEPACKET;
531#[doc = r"Cluster"]
532#[doc = "DFE packet EasyDMA channel"]
533pub mod dfepacket;
534#[doc = "POWER (rw) register accessor: an alias for `Reg<POWER_SPEC>`"]
535pub type POWER = crate::Reg<power::POWER_SPEC>;
536#[doc = "Peripheral power control"]
537pub mod power;