nrf52840_pac/qspi/
erase.rs

1#[doc = r"Register block"]
2#[repr(C)]
3pub struct ERASE {
4    #[doc = "0x00 - Start address of flash block to be erased"]
5    pub ptr: PTR,
6    #[doc = "0x04 - Size of block to be erased."]
7    pub len: LEN,
8}
9#[doc = "PTR (rw) register accessor: an alias for `Reg<PTR_SPEC>`"]
10pub type PTR = crate::Reg<ptr::PTR_SPEC>;
11#[doc = "Start address of flash block to be erased"]
12pub mod ptr;
13#[doc = "LEN (rw) register accessor: an alias for `Reg<LEN_SPEC>`"]
14pub type LEN = crate::Reg<len::LEN_SPEC>;
15#[doc = "Size of block to be erased."]
16pub mod len;