nxp-pac

Crates

git

Versions

lpc55s69_cm33_core0

Flavors

Powerquad

Struct Powerquad 

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

Digital Signal Co-Processing companion to a Cortex-M v8M CPU core

Implementations§

Source§

impl Powerquad

Source

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

Source

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

Source

pub const fn outbase(self) -> Reg<Outbase, RW>

Base address register for output region

Source

pub const fn outformat(self) -> Reg<Outformat, RW>

Output format

Source

pub const fn tmpbase(self) -> Reg<Tmpbase, RW>

Base address register for temp region

Source

pub const fn tmpformat(self) -> Reg<Tmpformat, RW>

Temp format

Source

pub const fn inabase(self) -> Reg<Inabase, RW>

Base address register for input A region

Source

pub const fn inaformat(self) -> Reg<Inaformat, RW>

Input A format

Source

pub const fn inbbase(self) -> Reg<Inbbase, RW>

Base address register for input B region

Source

pub const fn inbformat(self) -> Reg<Inbformat, RW>

Input B format

Source

pub const fn control(self) -> Reg<Control, RW>

PowerQuad Control register

Source

pub const fn length(self) -> Reg<Length, RW>

Length register

Source

pub const fn cppre(self) -> Reg<Cppre, RW>

Pre-scale register

Source

pub const fn misc(self) -> Reg<Misc, RW>

Misc register

Source

pub const fn cursory(self) -> Reg<Cursory, RW>

Cursory register

Source

pub const fn cordic_x(self) -> Reg<CordicX, RW>

Cordic input X register

Source

pub const fn cordic_y(self) -> Reg<CordicY, RW>

Cordic input Y register

Source

pub const fn cordic_z(self) -> Reg<CordicZ, RW>

Cordic input Z register

Source

pub const fn errstat(self) -> Reg<Errstat, RW>

Read/Write register where error statuses are captured (sticky)

Source

pub const fn intren(self) -> Reg<Intren, RW>

INTERRUPT enable register

Source

pub const fn eventen(self) -> Reg<Eventen, RW>

Event Enable register

Source

pub const fn intrstat(self) -> Reg<Intrstat, RW>

INTERRUPT STATUS register

Source

pub const fn gpreg(self, n: usize) -> Reg<Gpreg, RW>

General purpose register bank N.

Source

pub const fn compreg(self, n: usize) -> Reg<Compreg, RW>

Compute register bank

Trait Implementations§

Source§

impl Clone for Powerquad

Source§

fn clone(&self) -> Powerquad

Returns a duplicate 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 Powerquad

Source§

fn eq(&self, other: &Powerquad) -> 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 Powerquad

Source§

impl Eq for Powerquad

Source§

impl Send for Powerquad

Source§

impl StructuralPartialEq for Powerquad

Source§

impl Sync for Powerquad

Auto Trait Implementations§

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, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. 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.