nrf-pac

Crates

git

Versions

nrf5340-app

Flavors

nrf_pac::qspi

Struct Qspi

Source
pub struct Qspi { /* private fields */ }
Expand description

External flash interface 0

Implementations§

Source§

impl Qspi

Source

pub const unsafe fn from_ptr(ptr: *mut ()) -> Self

Source

pub const fn as_ptr(&self) -> *mut ()

Source

pub const fn tasks_activate(self) -> Reg<u32, W>

Activate QSPI interface

Source

pub const fn tasks_readstart(self) -> Reg<u32, W>

Start transfer from external flash memory to internal RAM

Source

pub const fn tasks_writestart(self) -> Reg<u32, W>

Start transfer from internal RAM to external flash memory

Source

pub const fn tasks_erasestart(self) -> Reg<u32, W>

Start external flash memory erase operation

Source

pub const fn tasks_deactivate(self) -> Reg<u32, W>

Deactivate QSPI interface

Source

pub const fn subscribe_activate(self) -> Reg<Subscribe, RW>

Subscribe configuration for task ACTIVATE

Source

pub const fn subscribe_readstart(self) -> Reg<Subscribe, RW>

Subscribe configuration for task READSTART

Source

pub const fn subscribe_writestart(self) -> Reg<Subscribe, RW>

Subscribe configuration for task WRITESTART

Source

pub const fn subscribe_erasestart(self) -> Reg<Subscribe, RW>

Subscribe configuration for task ERASESTART

Source

pub const fn subscribe_deactivate(self) -> Reg<Subscribe, RW>

Subscribe configuration for task DEACTIVATE

Source

pub const fn events_ready(self) -> Reg<u32, RW>

QSPI peripheral is ready. This event will be generated as a response to all QSPI tasks except DEACTIVATE.

Source

pub const fn publish_ready(self) -> Reg<Publish, RW>

Publish configuration for event READY

Source

pub const fn inten(self) -> Reg<Int, RW>

Enable or disable interrupt

Source

pub const fn intenset(self) -> Reg<Int, RW>

Enable interrupt

Source

pub const fn intenclr(self) -> Reg<Int, RW>

Disable interrupt

Source

pub const fn enable(self) -> Reg<QspiEnable, RW>

Enable QSPI peripheral and acquire the pins selected in PSELn registers

Source

pub const fn read(self) -> Read

Unspecified

Source

pub const fn write(self) -> Write

Unspecified

Source

pub const fn erase(self) -> Erase

Unspecified

Source

pub const fn psel(self) -> Psel

Unspecified

Source

pub const fn xipoffset(self) -> Reg<u32, RW>

Address offset into the external memory for Execute in Place operation.

Source

pub const fn ifconfig0(self) -> Reg<Ifconfig0, RW>

Interface configuration.

Source

pub const fn xipen(self) -> Reg<Xipen, RW>

Enable Execute in Place operation.

Source

pub const fn xip_enc(self) -> XipEnc

Unspecified

Source

pub const fn dma_enc(self) -> DmaEnc

Unspecified

Source

pub const fn ifconfig1(self) -> Reg<Ifconfig1, RW>

Interface configuration.

Source

pub const fn status(self) -> Reg<Status, R>

Status register.

Source

pub const fn dpmdur(self) -> Reg<Dpmdur, RW>

Set the duration required to enter/exit deep power-down mode (DPM).

Source

pub const fn addrconf(self) -> Reg<Addrconf, RW>

Extended address configuration.

Source

pub const fn cinstrconf(self) -> Reg<Cinstrconf, RW>

Custom instruction configuration register.

Source

pub const fn cinstrdat0(self) -> Reg<Cinstrdat0, RW>

Custom instruction data register 0.

Source

pub const fn cinstrdat1(self) -> Reg<Cinstrdat1, RW>

Custom instruction data register 1.

Source

pub const fn iftiming(self) -> Reg<Iftiming, RW>

SPI interface timing.

Trait Implementations§

Source§

impl Clone for Qspi

Source§

fn clone(&self) -> Qspi

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl PartialEq for Qspi

Source§

fn eq(&self, other: &Qspi) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Copy for Qspi

Source§

impl Eq for Qspi

Source§

impl Send for Qspi

Source§

impl StructuralPartialEq for Qspi

Source§

impl Sync for Qspi

Auto Trait Implementations§

§

impl Freeze for Qspi

§

impl RefUnwindSafe for Qspi

§

impl Unpin for Qspi

§

impl UnwindSafe for Qspi

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.