bl616-pac 0.0.0

Embedded Rust's Peripheral Access Crate for BL616/618 RISC-V WiFi microcontroller
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
#[doc = r"Register block"]
#[repr(C)]
pub struct RegisterBlock {
    #[doc = "0x00 - Chip information register"]
    pub chip_inform: CHIP_INFORM,
    _reserved1: [u8; 0x4c],
    #[doc = "0x50..0x58 - Chip interrupt state register"]
    pub interrupt_state: [INTERRUPT_STATE; 2],
    #[doc = "0x58..0x60 - Chip interrupt mask register"]
    pub interrupt_mask: [INTERRUPT_MASK; 2],
    #[doc = "0x60..0x68 - Chip clear interrupt register"]
    pub interrupt_clear: [INTERRUPT_CLEAR; 2],
    _reserved4: [u8; 0x28],
    #[doc = "0x90 - System clock configuration register 0"]
    pub clock_config_0: CLOCK_CONFIG_0,
    #[doc = "0x94 - System clock configuration register 1"]
    pub clock_config_1: CLOCK_CONFIG_1,
    _reserved6: [u8; 0x08],
    #[doc = "0xa0 - Bus configuration register 0"]
    pub bus_config_0: BUS_CONFIG_0,
    _reserved7: [u8; 0x6c],
    #[doc = "0x110 - General Purpose Analog-to-digital convert configuration"]
    pub gpadc_config: GPADC_CONFIG,
    _reserved8: [u8; 0x0c],
    #[doc = "0x120 - General Purpose Digital-to-analog convert configuration 0"]
    pub gpdac_config_0: GPDAC_CONFIG_0,
    #[doc = "0x124 - General Purpose Digital-to-analog convert configuration 1"]
    pub gpdac_config_1: GPDAC_CONFIG_1,
    #[doc = "0x128 - General Purpose Digital-to-analog convert configuration 2"]
    pub gpdac_config_2: GPDAC_CONFIG_2,
    #[doc = "0x12c - General Purpose Digital-to-analog convert configuration 3"]
    pub gpdac_config_3: GPDAC_CONFIG_3,
    #[doc = "0x130 - Direct Memory Access configuration 0"]
    pub dma_config_0: DMA_CONFIG_0,
    #[doc = "0x134 - Direct Memory Access configuration 1"]
    pub dma_config_1: DMA_CONFIG_1,
    #[doc = "0x138 - Direct Memory Access configuration 2"]
    pub dma_config_2: DMA_CONFIG_2,
    _reserved15: [u8; 0x04],
    #[doc = "0x140 - Infrared configuration register 0"]
    pub ir_config_0: IR_CONFIG_0,
    #[doc = "0x144 - Infrared configuration register 1"]
    pub ir_config_1: IR_CONFIG_1,
    _reserved17: [u8; 0x08],
    #[doc = "0x150 - Universal Asynchronous Receiver/Transmitter configuration"]
    pub uart_config: UART_CONFIG,
    #[doc = "0x154 - Universal Asynchronous Receiver/Transmitter signal configuration 0"]
    pub uart_signal_0: UART_SIGNAL_0,
    #[doc = "0x158 - Universal Asynchronous Receiver/Transmitter signal configuration 1"]
    pub uart_signal_1: UART_SIGNAL_1,
    _reserved20: [u8; 0x14],
    #[doc = "0x170 - Serial flash configuration"]
    pub flash_config: FLASH_CONFIG,
    _reserved21: [u8; 0x0c],
    #[doc = "0x180 - Inter-Integrated Circuit bus configuration"]
    pub i2c_config: I2C_CONFIG,
    _reserved22: [u8; 0x0c],
    #[doc = "0x190 - Inter-IC Sound configuration"]
    pub i2s_config: I2S_CONFIG,
    _reserved23: [u8; 0x1c],
    #[doc = "0x1b0 - Serial Peripheral Interface configuration"]
    pub spi_config: SPI_CONFIG,
    _reserved24: [u8; 0x2c],
    #[doc = "0x1e0 - Pulse-Width configuration"]
    pub pwm_config: PWM_CONFIG,
    _reserved25: [u8; 0x0c],
    #[doc = "0x1f0 - MIPI Display Bus Interface clock configuration"]
    pub dbi_config: DBI_CONFIG,
    _reserved26: [u8; 0x5c],
    #[doc = "0x250 - Digital clock configuration 0"]
    pub digit_clock_0: DIGIT_CLOCK_0,
    #[doc = "0x254 - Digital clock configuration 1"]
    pub digit_clock_1: DIGIT_CLOCK_1,
    #[doc = "0x258 - Digital clock configuration 2"]
    pub digit_clock_2: DIGIT_CLOCK_2,
    _reserved29: [u8; 0x04],
    #[doc = "0x260 - Radio frequency configuration register"]
    pub radio_config: RADIO_CONFIG,
    _reserved30: [u8; 0x7c],
    #[doc = "0x2e0 - Debug configuration register 0"]
    pub debug_config_0: DEBUG_CONFIG_0,
    #[doc = "0x2e4 - Debug configuration register 1"]
    pub debug_config_1: DEBUG_CONFIG_1,
    #[doc = "0x2e8 - Debug configuration register 2"]
    pub debug_config_2: DEBUG_CONFIG_2,
    #[doc = "0x2ec - Debug configuration register 3"]
    pub debug_config_3: DEBUG_CONFIG_3,
    #[doc = "0x2f0 - Debug configuration register 4"]
    pub debug_config_4: DEBUG_CONFIG_4,
    _reserved35: [u8; 0x0c],
    #[doc = "0x300 - Machine Built-in Self Test register 0"]
    pub self_test_0: SELF_TEST_0,
    #[doc = "0x304 - Machine Built-in Self Test register 1"]
    pub self_test_1: SELF_TEST_1,
    _reserved37: [u8; 0x38],
    #[doc = "0x340 - Audio configuration register 0"]
    pub audio_config_0: AUDIO_CONFIG_0,
    #[doc = "0x344 - Audio configuration register 1"]
    pub audio_config_1: AUDIO_CONFIG_1,
    _reserved39: [u8; 0x48],
    #[doc = "0x390 - Ethernet Media Access Control configuration"]
    pub emac_config: EMAC_CONFIG,
    _reserved40: [u8; 0x9c],
    #[doc = "0x430 - Secure Digital host configuration"]
    pub sdh_config: SDH_CONFIG,
    _reserved41: [u8; 0x5c],
    #[doc = "0x490 - Permission control peripheral configuration"]
    pub permit_config: PERMIT_CONFIG,
    _reserved42: [u8; 0x018c],
    #[doc = "0x620 - Pseudo Static Random-Access Memory configuration"]
    pub psram_config: PSRAM_CONFIG,
    _reserved43: [u8; 0x01ec],
    #[doc = "0x810 - Wireless Fidelity Phase-Locked Loop configuration 0"]
    pub wifi_pll_config_0: WIFI_PLL_CONFIG_0,
    #[doc = "0x814 - Wireless Fidelity Phase-Locked Loop configuration 1"]
    pub wifi_pll_config_1: WIFI_PLL_CONFIG_1,
    #[doc = "0x818 - Wireless Fidelity Phase-Locked Loop configuration 2"]
    pub wifi_pll_config_2: WIFI_PLL_CONFIG_2,
    #[doc = "0x81c - Wireless Fidelity Phase-Locked Loop configuration 3"]
    pub wifi_pll_config_3: WIFI_PLL_CONFIG_3,
    #[doc = "0x820 - Wireless Fidelity Phase-Locked Loop configuration 4"]
    pub wifi_pll_config_4: WIFI_PLL_CONFIG_4,
    #[doc = "0x824 - Wireless Fidelity Phase-Locked Loop configuration 5"]
    pub wifi_pll_config_5: WIFI_PLL_CONFIG_5,
    #[doc = "0x828 - Wireless Fidelity Phase-Locked Loop configuration 6"]
    pub wifi_pll_config_6: WIFI_PLL_CONFIG_6,
    #[doc = "0x82c - Wireless Fidelity Phase-Locked Loop configuration 7"]
    pub wifi_pll_config_7: WIFI_PLL_CONFIG_7,
    #[doc = "0x830 - Wireless Fidelity Phase-Locked Loop configuration 8"]
    pub wifi_pll_config_8: WIFI_PLL_CONFIG_8,
    #[doc = "0x834 - Wireless Fidelity Phase-Locked Loop configuration 9"]
    pub wifi_pll_config_9: WIFI_PLL_CONFIG_9,
    #[doc = "0x838 - Wireless Fidelity Phase-Locked Loop configuration 10"]
    pub wifi_pll_config_10: WIFI_PLL_CONFIG_10,
    #[doc = "0x83c - Wireless Fidelity Phase-Locked Loop configuration 11"]
    pub wifi_pll_config_11: WIFI_PLL_CONFIG_11,
    #[doc = "0x840 - Wireless Fidelity Phase-Locked Loop configuration 12"]
    pub wifi_pll_config_12: WIFI_PLL_CONFIG_12,
    #[doc = "0x844 - Wireless Fidelity Phase-Locked Loop configuration 13"]
    pub wifi_pll_config_13: WIFI_PLL_CONFIG_13,
    #[doc = "0x848 - Wireless Fidelity Phase-Locked Loop configuration 14"]
    pub wifi_pll_config_14: WIFI_PLL_CONFIG_14,
    _reserved58: [u8; 0x38],
    #[doc = "0x884 - 1.8-V Low Dropout Linear Regulator configuration"]
    pub ldo18: LDO18,
    _reserved59: [u8; 0x3c],
    #[doc = "0x8c4..0x950 - Generic Purpose Input/Output config"]
    pub gpio_config: [GPIO_CONFIG; 35],
    _reserved60: [u8; 0x0174],
    #[doc = "0xac4..0xacc - Read value from Generic Purpose Input/Output pins"]
    pub gpio_input: [GPIO_INPUT; 2],
    _reserved61: [u8; 0x18],
    #[doc = "0xae4..0xaec - Write value to Generic Purpose Input/Output pins"]
    pub gpio_output: [GPIO_OUTPUT; 2],
    #[doc = "0xaec..0xaf4 - Set pin output value to high"]
    pub gpio_set: [GPIO_SET; 2],
    #[doc = "0xaf4..0xafc - Set pin output value to low"]
    pub gpio_clear: [GPIO_CLEAR; 2],
}
#[doc = "chip_inform (rw) register accessor: an alias for `Reg<CHIP_INFORM_SPEC>`"]
pub type CHIP_INFORM = crate::Reg<chip_inform::CHIP_INFORM_SPEC>;
#[doc = "Chip information register"]
pub mod chip_inform;
#[doc = "interrupt_state (rw) register accessor: an alias for `Reg<INTERRUPT_STATE_SPEC>`"]
pub type INTERRUPT_STATE = crate::Reg<interrupt_state::INTERRUPT_STATE_SPEC>;
#[doc = "Chip interrupt state register"]
pub mod interrupt_state;
#[doc = "interrupt_mask (rw) register accessor: an alias for `Reg<INTERRUPT_MASK_SPEC>`"]
pub type INTERRUPT_MASK = crate::Reg<interrupt_mask::INTERRUPT_MASK_SPEC>;
#[doc = "Chip interrupt mask register"]
pub mod interrupt_mask;
#[doc = "interrupt_clear (rw) register accessor: an alias for `Reg<INTERRUPT_CLEAR_SPEC>`"]
pub type INTERRUPT_CLEAR = crate::Reg<interrupt_clear::INTERRUPT_CLEAR_SPEC>;
#[doc = "Chip clear interrupt register"]
pub mod interrupt_clear;
#[doc = "clock_config_0 (rw) register accessor: an alias for `Reg<CLOCK_CONFIG_0_SPEC>`"]
pub type CLOCK_CONFIG_0 = crate::Reg<clock_config_0::CLOCK_CONFIG_0_SPEC>;
#[doc = "System clock configuration register 0"]
pub mod clock_config_0;
#[doc = "clock_config_1 (rw) register accessor: an alias for `Reg<CLOCK_CONFIG_1_SPEC>`"]
pub type CLOCK_CONFIG_1 = crate::Reg<clock_config_1::CLOCK_CONFIG_1_SPEC>;
#[doc = "System clock configuration register 1"]
pub mod clock_config_1;
#[doc = "bus_config_0 (rw) register accessor: an alias for `Reg<BUS_CONFIG_0_SPEC>`"]
pub type BUS_CONFIG_0 = crate::Reg<bus_config_0::BUS_CONFIG_0_SPEC>;
#[doc = "Bus configuration register 0"]
pub mod bus_config_0;
#[doc = "gpadc_config (rw) register accessor: an alias for `Reg<GPADC_CONFIG_SPEC>`"]
pub type GPADC_CONFIG = crate::Reg<gpadc_config::GPADC_CONFIG_SPEC>;
#[doc = "General Purpose Analog-to-digital convert configuration"]
pub mod gpadc_config;
#[doc = "gpdac_config_0 (rw) register accessor: an alias for `Reg<GPDAC_CONFIG_0_SPEC>`"]
pub type GPDAC_CONFIG_0 = crate::Reg<gpdac_config_0::GPDAC_CONFIG_0_SPEC>;
#[doc = "General Purpose Digital-to-analog convert configuration 0"]
pub mod gpdac_config_0;
#[doc = "gpdac_config_1 (rw) register accessor: an alias for `Reg<GPDAC_CONFIG_1_SPEC>`"]
pub type GPDAC_CONFIG_1 = crate::Reg<gpdac_config_1::GPDAC_CONFIG_1_SPEC>;
#[doc = "General Purpose Digital-to-analog convert configuration 1"]
pub mod gpdac_config_1;
#[doc = "gpdac_config_2 (rw) register accessor: an alias for `Reg<GPDAC_CONFIG_2_SPEC>`"]
pub type GPDAC_CONFIG_2 = crate::Reg<gpdac_config_2::GPDAC_CONFIG_2_SPEC>;
#[doc = "General Purpose Digital-to-analog convert configuration 2"]
pub mod gpdac_config_2;
#[doc = "gpdac_config_3 (rw) register accessor: an alias for `Reg<GPDAC_CONFIG_3_SPEC>`"]
pub type GPDAC_CONFIG_3 = crate::Reg<gpdac_config_3::GPDAC_CONFIG_3_SPEC>;
#[doc = "General Purpose Digital-to-analog convert configuration 3"]
pub mod gpdac_config_3;
#[doc = "dma_config_0 (rw) register accessor: an alias for `Reg<DMA_CONFIG_0_SPEC>`"]
pub type DMA_CONFIG_0 = crate::Reg<dma_config_0::DMA_CONFIG_0_SPEC>;
#[doc = "Direct Memory Access configuration 0"]
pub mod dma_config_0;
#[doc = "dma_config_1 (rw) register accessor: an alias for `Reg<DMA_CONFIG_1_SPEC>`"]
pub type DMA_CONFIG_1 = crate::Reg<dma_config_1::DMA_CONFIG_1_SPEC>;
#[doc = "Direct Memory Access configuration 1"]
pub mod dma_config_1;
#[doc = "dma_config_2 (rw) register accessor: an alias for `Reg<DMA_CONFIG_2_SPEC>`"]
pub type DMA_CONFIG_2 = crate::Reg<dma_config_2::DMA_CONFIG_2_SPEC>;
#[doc = "Direct Memory Access configuration 2"]
pub mod dma_config_2;
#[doc = "ir_config_0 (rw) register accessor: an alias for `Reg<IR_CONFIG_0_SPEC>`"]
pub type IR_CONFIG_0 = crate::Reg<ir_config_0::IR_CONFIG_0_SPEC>;
#[doc = "Infrared configuration register 0"]
pub mod ir_config_0;
#[doc = "ir_config_1 (rw) register accessor: an alias for `Reg<IR_CONFIG_1_SPEC>`"]
pub type IR_CONFIG_1 = crate::Reg<ir_config_1::IR_CONFIG_1_SPEC>;
#[doc = "Infrared configuration register 1"]
pub mod ir_config_1;
#[doc = "uart_config (rw) register accessor: an alias for `Reg<UART_CONFIG_SPEC>`"]
pub type UART_CONFIG = crate::Reg<uart_config::UART_CONFIG_SPEC>;
#[doc = "Universal Asynchronous Receiver/Transmitter configuration"]
pub mod uart_config;
#[doc = "uart_signal_0 (rw) register accessor: an alias for `Reg<UART_SIGNAL_0_SPEC>`"]
pub type UART_SIGNAL_0 = crate::Reg<uart_signal_0::UART_SIGNAL_0_SPEC>;
#[doc = "Universal Asynchronous Receiver/Transmitter signal configuration 0"]
pub mod uart_signal_0;
#[doc = "uart_signal_1 (rw) register accessor: an alias for `Reg<UART_SIGNAL_1_SPEC>`"]
pub type UART_SIGNAL_1 = crate::Reg<uart_signal_1::UART_SIGNAL_1_SPEC>;
#[doc = "Universal Asynchronous Receiver/Transmitter signal configuration 1"]
pub mod uart_signal_1;
#[doc = "flash_config (rw) register accessor: an alias for `Reg<FLASH_CONFIG_SPEC>`"]
pub type FLASH_CONFIG = crate::Reg<flash_config::FLASH_CONFIG_SPEC>;
#[doc = "Serial flash configuration"]
pub mod flash_config;
#[doc = "i2c_config (rw) register accessor: an alias for `Reg<I2C_CONFIG_SPEC>`"]
pub type I2C_CONFIG = crate::Reg<i2c_config::I2C_CONFIG_SPEC>;
#[doc = "Inter-Integrated Circuit bus configuration"]
pub mod i2c_config;
#[doc = "i2s_config (rw) register accessor: an alias for `Reg<I2S_CONFIG_SPEC>`"]
pub type I2S_CONFIG = crate::Reg<i2s_config::I2S_CONFIG_SPEC>;
#[doc = "Inter-IC Sound configuration"]
pub mod i2s_config;
#[doc = "spi_config (rw) register accessor: an alias for `Reg<SPI_CONFIG_SPEC>`"]
pub type SPI_CONFIG = crate::Reg<spi_config::SPI_CONFIG_SPEC>;
#[doc = "Serial Peripheral Interface configuration"]
pub mod spi_config;
#[doc = "pwm_config (rw) register accessor: an alias for `Reg<PWM_CONFIG_SPEC>`"]
pub type PWM_CONFIG = crate::Reg<pwm_config::PWM_CONFIG_SPEC>;
#[doc = "Pulse-Width configuration"]
pub mod pwm_config;
#[doc = "dbi_config (rw) register accessor: an alias for `Reg<DBI_CONFIG_SPEC>`"]
pub type DBI_CONFIG = crate::Reg<dbi_config::DBI_CONFIG_SPEC>;
#[doc = "MIPI Display Bus Interface clock configuration"]
pub mod dbi_config;
#[doc = "digit_clock_0 (rw) register accessor: an alias for `Reg<DIGIT_CLOCK_0_SPEC>`"]
pub type DIGIT_CLOCK_0 = crate::Reg<digit_clock_0::DIGIT_CLOCK_0_SPEC>;
#[doc = "Digital clock configuration 0"]
pub mod digit_clock_0;
#[doc = "digit_clock_1 (rw) register accessor: an alias for `Reg<DIGIT_CLOCK_1_SPEC>`"]
pub type DIGIT_CLOCK_1 = crate::Reg<digit_clock_1::DIGIT_CLOCK_1_SPEC>;
#[doc = "Digital clock configuration 1"]
pub mod digit_clock_1;
#[doc = "digit_clock_2 (rw) register accessor: an alias for `Reg<DIGIT_CLOCK_2_SPEC>`"]
pub type DIGIT_CLOCK_2 = crate::Reg<digit_clock_2::DIGIT_CLOCK_2_SPEC>;
#[doc = "Digital clock configuration 2"]
pub mod digit_clock_2;
#[doc = "radio_config (rw) register accessor: an alias for `Reg<RADIO_CONFIG_SPEC>`"]
pub type RADIO_CONFIG = crate::Reg<radio_config::RADIO_CONFIG_SPEC>;
#[doc = "Radio frequency configuration register"]
pub mod radio_config;
#[doc = "debug_config_0 (rw) register accessor: an alias for `Reg<DEBUG_CONFIG_0_SPEC>`"]
pub type DEBUG_CONFIG_0 = crate::Reg<debug_config_0::DEBUG_CONFIG_0_SPEC>;
#[doc = "Debug configuration register 0"]
pub mod debug_config_0;
#[doc = "debug_config_1 (rw) register accessor: an alias for `Reg<DEBUG_CONFIG_1_SPEC>`"]
pub type DEBUG_CONFIG_1 = crate::Reg<debug_config_1::DEBUG_CONFIG_1_SPEC>;
#[doc = "Debug configuration register 1"]
pub mod debug_config_1;
#[doc = "debug_config_2 (rw) register accessor: an alias for `Reg<DEBUG_CONFIG_2_SPEC>`"]
pub type DEBUG_CONFIG_2 = crate::Reg<debug_config_2::DEBUG_CONFIG_2_SPEC>;
#[doc = "Debug configuration register 2"]
pub mod debug_config_2;
#[doc = "debug_config_3 (rw) register accessor: an alias for `Reg<DEBUG_CONFIG_3_SPEC>`"]
pub type DEBUG_CONFIG_3 = crate::Reg<debug_config_3::DEBUG_CONFIG_3_SPEC>;
#[doc = "Debug configuration register 3"]
pub mod debug_config_3;
#[doc = "debug_config_4 (rw) register accessor: an alias for `Reg<DEBUG_CONFIG_4_SPEC>`"]
pub type DEBUG_CONFIG_4 = crate::Reg<debug_config_4::DEBUG_CONFIG_4_SPEC>;
#[doc = "Debug configuration register 4"]
pub mod debug_config_4;
#[doc = "self_test_0 (rw) register accessor: an alias for `Reg<SELF_TEST_0_SPEC>`"]
pub type SELF_TEST_0 = crate::Reg<self_test_0::SELF_TEST_0_SPEC>;
#[doc = "Machine Built-in Self Test register 0"]
pub mod self_test_0;
#[doc = "self_test_1 (rw) register accessor: an alias for `Reg<SELF_TEST_1_SPEC>`"]
pub type SELF_TEST_1 = crate::Reg<self_test_1::SELF_TEST_1_SPEC>;
#[doc = "Machine Built-in Self Test register 1"]
pub mod self_test_1;
#[doc = "audio_config_0 (rw) register accessor: an alias for `Reg<AUDIO_CONFIG_0_SPEC>`"]
pub type AUDIO_CONFIG_0 = crate::Reg<audio_config_0::AUDIO_CONFIG_0_SPEC>;
#[doc = "Audio configuration register 0"]
pub mod audio_config_0;
#[doc = "audio_config_1 (rw) register accessor: an alias for `Reg<AUDIO_CONFIG_1_SPEC>`"]
pub type AUDIO_CONFIG_1 = crate::Reg<audio_config_1::AUDIO_CONFIG_1_SPEC>;
#[doc = "Audio configuration register 1"]
pub mod audio_config_1;
#[doc = "emac_config (rw) register accessor: an alias for `Reg<EMAC_CONFIG_SPEC>`"]
pub type EMAC_CONFIG = crate::Reg<emac_config::EMAC_CONFIG_SPEC>;
#[doc = "Ethernet Media Access Control configuration"]
pub mod emac_config;
#[doc = "sdh_config (rw) register accessor: an alias for `Reg<SDH_CONFIG_SPEC>`"]
pub type SDH_CONFIG = crate::Reg<sdh_config::SDH_CONFIG_SPEC>;
#[doc = "Secure Digital host configuration"]
pub mod sdh_config;
#[doc = "permit_config (rw) register accessor: an alias for `Reg<PERMIT_CONFIG_SPEC>`"]
pub type PERMIT_CONFIG = crate::Reg<permit_config::PERMIT_CONFIG_SPEC>;
#[doc = "Permission control peripheral configuration"]
pub mod permit_config;
#[doc = "psram_config (rw) register accessor: an alias for `Reg<PSRAM_CONFIG_SPEC>`"]
pub type PSRAM_CONFIG = crate::Reg<psram_config::PSRAM_CONFIG_SPEC>;
#[doc = "Pseudo Static Random-Access Memory configuration"]
pub mod psram_config;
#[doc = "wifi_pll_config_0 (rw) register accessor: an alias for `Reg<WIFI_PLL_CONFIG_0_SPEC>`"]
pub type WIFI_PLL_CONFIG_0 = crate::Reg<wifi_pll_config_0::WIFI_PLL_CONFIG_0_SPEC>;
#[doc = "Wireless Fidelity Phase-Locked Loop configuration 0"]
pub mod wifi_pll_config_0;
#[doc = "wifi_pll_config_1 (rw) register accessor: an alias for `Reg<WIFI_PLL_CONFIG_1_SPEC>`"]
pub type WIFI_PLL_CONFIG_1 = crate::Reg<wifi_pll_config_1::WIFI_PLL_CONFIG_1_SPEC>;
#[doc = "Wireless Fidelity Phase-Locked Loop configuration 1"]
pub mod wifi_pll_config_1;
#[doc = "wifi_pll_config_2 (rw) register accessor: an alias for `Reg<WIFI_PLL_CONFIG_2_SPEC>`"]
pub type WIFI_PLL_CONFIG_2 = crate::Reg<wifi_pll_config_2::WIFI_PLL_CONFIG_2_SPEC>;
#[doc = "Wireless Fidelity Phase-Locked Loop configuration 2"]
pub mod wifi_pll_config_2;
#[doc = "wifi_pll_config_3 (rw) register accessor: an alias for `Reg<WIFI_PLL_CONFIG_3_SPEC>`"]
pub type WIFI_PLL_CONFIG_3 = crate::Reg<wifi_pll_config_3::WIFI_PLL_CONFIG_3_SPEC>;
#[doc = "Wireless Fidelity Phase-Locked Loop configuration 3"]
pub mod wifi_pll_config_3;
#[doc = "wifi_pll_config_4 (rw) register accessor: an alias for `Reg<WIFI_PLL_CONFIG_4_SPEC>`"]
pub type WIFI_PLL_CONFIG_4 = crate::Reg<wifi_pll_config_4::WIFI_PLL_CONFIG_4_SPEC>;
#[doc = "Wireless Fidelity Phase-Locked Loop configuration 4"]
pub mod wifi_pll_config_4;
#[doc = "wifi_pll_config_5 (rw) register accessor: an alias for `Reg<WIFI_PLL_CONFIG_5_SPEC>`"]
pub type WIFI_PLL_CONFIG_5 = crate::Reg<wifi_pll_config_5::WIFI_PLL_CONFIG_5_SPEC>;
#[doc = "Wireless Fidelity Phase-Locked Loop configuration 5"]
pub mod wifi_pll_config_5;
#[doc = "wifi_pll_config_6 (rw) register accessor: an alias for `Reg<WIFI_PLL_CONFIG_6_SPEC>`"]
pub type WIFI_PLL_CONFIG_6 = crate::Reg<wifi_pll_config_6::WIFI_PLL_CONFIG_6_SPEC>;
#[doc = "Wireless Fidelity Phase-Locked Loop configuration 6"]
pub mod wifi_pll_config_6;
#[doc = "wifi_pll_config_7 (rw) register accessor: an alias for `Reg<WIFI_PLL_CONFIG_7_SPEC>`"]
pub type WIFI_PLL_CONFIG_7 = crate::Reg<wifi_pll_config_7::WIFI_PLL_CONFIG_7_SPEC>;
#[doc = "Wireless Fidelity Phase-Locked Loop configuration 7"]
pub mod wifi_pll_config_7;
#[doc = "wifi_pll_config_8 (rw) register accessor: an alias for `Reg<WIFI_PLL_CONFIG_8_SPEC>`"]
pub type WIFI_PLL_CONFIG_8 = crate::Reg<wifi_pll_config_8::WIFI_PLL_CONFIG_8_SPEC>;
#[doc = "Wireless Fidelity Phase-Locked Loop configuration 8"]
pub mod wifi_pll_config_8;
#[doc = "wifi_pll_config_9 (rw) register accessor: an alias for `Reg<WIFI_PLL_CONFIG_9_SPEC>`"]
pub type WIFI_PLL_CONFIG_9 = crate::Reg<wifi_pll_config_9::WIFI_PLL_CONFIG_9_SPEC>;
#[doc = "Wireless Fidelity Phase-Locked Loop configuration 9"]
pub mod wifi_pll_config_9;
#[doc = "wifi_pll_config_10 (rw) register accessor: an alias for `Reg<WIFI_PLL_CONFIG_10_SPEC>`"]
pub type WIFI_PLL_CONFIG_10 = crate::Reg<wifi_pll_config_10::WIFI_PLL_CONFIG_10_SPEC>;
#[doc = "Wireless Fidelity Phase-Locked Loop configuration 10"]
pub mod wifi_pll_config_10;
#[doc = "wifi_pll_config_11 (rw) register accessor: an alias for `Reg<WIFI_PLL_CONFIG_11_SPEC>`"]
pub type WIFI_PLL_CONFIG_11 = crate::Reg<wifi_pll_config_11::WIFI_PLL_CONFIG_11_SPEC>;
#[doc = "Wireless Fidelity Phase-Locked Loop configuration 11"]
pub mod wifi_pll_config_11;
#[doc = "wifi_pll_config_12 (rw) register accessor: an alias for `Reg<WIFI_PLL_CONFIG_12_SPEC>`"]
pub type WIFI_PLL_CONFIG_12 = crate::Reg<wifi_pll_config_12::WIFI_PLL_CONFIG_12_SPEC>;
#[doc = "Wireless Fidelity Phase-Locked Loop configuration 12"]
pub mod wifi_pll_config_12;
#[doc = "wifi_pll_config_13 (rw) register accessor: an alias for `Reg<WIFI_PLL_CONFIG_13_SPEC>`"]
pub type WIFI_PLL_CONFIG_13 = crate::Reg<wifi_pll_config_13::WIFI_PLL_CONFIG_13_SPEC>;
#[doc = "Wireless Fidelity Phase-Locked Loop configuration 13"]
pub mod wifi_pll_config_13;
#[doc = "wifi_pll_config_14 (rw) register accessor: an alias for `Reg<WIFI_PLL_CONFIG_14_SPEC>`"]
pub type WIFI_PLL_CONFIG_14 = crate::Reg<wifi_pll_config_14::WIFI_PLL_CONFIG_14_SPEC>;
#[doc = "Wireless Fidelity Phase-Locked Loop configuration 14"]
pub mod wifi_pll_config_14;
#[doc = "ldo18 (rw) register accessor: an alias for `Reg<LDO18_SPEC>`"]
pub type LDO18 = crate::Reg<ldo18::LDO18_SPEC>;
#[doc = "1.8-V Low Dropout Linear Regulator configuration"]
pub mod ldo18;
#[doc = "gpio_config (rw) register accessor: an alias for `Reg<GPIO_CONFIG_SPEC>`"]
pub type GPIO_CONFIG = crate::Reg<gpio_config::GPIO_CONFIG_SPEC>;
#[doc = "Generic Purpose Input/Output config"]
pub mod gpio_config;
#[doc = "gpio_input (rw) register accessor: an alias for `Reg<GPIO_INPUT_SPEC>`"]
pub type GPIO_INPUT = crate::Reg<gpio_input::GPIO_INPUT_SPEC>;
#[doc = "Read value from Generic Purpose Input/Output pins"]
pub mod gpio_input;
#[doc = "gpio_output (rw) register accessor: an alias for `Reg<GPIO_OUTPUT_SPEC>`"]
pub type GPIO_OUTPUT = crate::Reg<gpio_output::GPIO_OUTPUT_SPEC>;
#[doc = "Write value to Generic Purpose Input/Output pins"]
pub mod gpio_output;
#[doc = "gpio_set (rw) register accessor: an alias for `Reg<GPIO_SET_SPEC>`"]
pub type GPIO_SET = crate::Reg<gpio_set::GPIO_SET_SPEC>;
#[doc = "Set pin output value to high"]
pub mod gpio_set;
#[doc = "gpio_clear (rw) register accessor: an alias for `Reg<GPIO_CLEAR_SPEC>`"]
pub type GPIO_CLEAR = crate::Reg<gpio_clear::GPIO_CLEAR_SPEC>;
#[doc = "Set pin output value to low"]
pub mod gpio_clear;