nrf52840_pac/
spi0.rs
1#[doc = r"Register block"]
2#[repr(C)]
3pub struct RegisterBlock {
4 _reserved0: [u8; 0x0108],
5 #[doc = "0x108 - TXD byte sent and RXD byte received"]
6 pub events_ready: EVENTS_READY,
7 _reserved1: [u8; 0x01f8],
8 #[doc = "0x304 - Enable interrupt"]
9 pub intenset: INTENSET,
10 #[doc = "0x308 - Disable interrupt"]
11 pub intenclr: INTENCLR,
12 _reserved3: [u8; 0x01f4],
13 #[doc = "0x500 - Enable SPI"]
14 pub enable: ENABLE,
15 _reserved4: [u8; 0x04],
16 #[doc = "0x508..0x514 - Unspecified"]
17 pub psel: PSEL,
18 _reserved5: [u8; 0x04],
19 #[doc = "0x518 - RXD register"]
20 pub rxd: RXD,
21 #[doc = "0x51c - TXD register"]
22 pub txd: TXD,
23 _reserved7: [u8; 0x04],
24 #[doc = "0x524 - SPI frequency. Accuracy depends on the HFCLK source selected."]
25 pub frequency: FREQUENCY,
26 _reserved8: [u8; 0x2c],
27 #[doc = "0x554 - Configuration register"]
28 pub config: CONFIG,
29}
30#[doc = "EVENTS_READY (rw) register accessor: an alias for `Reg<EVENTS_READY_SPEC>`"]
31pub type EVENTS_READY = crate::Reg<events_ready::EVENTS_READY_SPEC>;
32#[doc = "TXD byte sent and RXD byte received"]
33pub mod events_ready;
34#[doc = "INTENSET (rw) register accessor: an alias for `Reg<INTENSET_SPEC>`"]
35pub type INTENSET = crate::Reg<intenset::INTENSET_SPEC>;
36#[doc = "Enable interrupt"]
37pub mod intenset;
38#[doc = "INTENCLR (rw) register accessor: an alias for `Reg<INTENCLR_SPEC>`"]
39pub type INTENCLR = crate::Reg<intenclr::INTENCLR_SPEC>;
40#[doc = "Disable interrupt"]
41pub mod intenclr;
42#[doc = "ENABLE (rw) register accessor: an alias for `Reg<ENABLE_SPEC>`"]
43pub type ENABLE = crate::Reg<enable::ENABLE_SPEC>;
44#[doc = "Enable SPI"]
45pub mod enable;
46#[doc = "Unspecified"]
47pub use psel::PSEL;
48#[doc = r"Cluster"]
49#[doc = "Unspecified"]
50pub mod psel;
51#[doc = "RXD (r) register accessor: an alias for `Reg<RXD_SPEC>`"]
52pub type RXD = crate::Reg<rxd::RXD_SPEC>;
53#[doc = "RXD register"]
54pub mod rxd;
55#[doc = "TXD (rw) register accessor: an alias for `Reg<TXD_SPEC>`"]
56pub type TXD = crate::Reg<txd::TXD_SPEC>;
57#[doc = "TXD register"]
58pub mod txd;
59#[doc = "FREQUENCY (rw) register accessor: an alias for `Reg<FREQUENCY_SPEC>`"]
60pub type FREQUENCY = crate::Reg<frequency::FREQUENCY_SPEC>;
61#[doc = "SPI frequency. Accuracy depends on the HFCLK source selected."]
62pub mod frequency;
63#[doc = "CONFIG (rw) register accessor: an alias for `Reg<CONFIG_SPEC>`"]
64pub type CONFIG = crate::Reg<config::CONFIG_SPEC>;
65#[doc = "Configuration register"]
66pub mod config;