stm32-metapac

Crates

git

Versions

stm32u535cc

Flavors

Ramcfg

Struct Ramcfg 

pub struct Ramcfg { /* private fields */ }
Expand description

RAMCFG.

Implementations§

§

impl Ramcfg

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

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

pub const fn ram1cr(self) -> Reg<Ram1cr, RW>

RAMCFG SRAM x control register.

pub const fn ram1isr(self) -> Reg<Ram1isr, R>

RAMCFG RAMx interrupt status register.

pub const fn ram1erkeyr(self) -> Reg<Ram1erkeyr, W>

RAMCFG SRAM x erase key register.

pub const fn ram2cr(self) -> Reg<Ram2cr, RW>

RAMCFG SRAM x control register.

pub const fn ram2ier(self) -> Reg<Ram2ier, RW>

RAMCFG SRAM x interrupt enable register.

pub const fn ram2isr(self) -> Reg<Ram2isr, R>

RAMCFG RAMx interrupt status register.

pub const fn ram2sear(self) -> Reg<Ram2sear, R>

RAMCFG RAM x ECC single error address register.

pub const fn ram2dear(self) -> Reg<Ram2dear, R>

RAMCFG RAM x ECC double error address register.

pub const fn ram2icr(self) -> Reg<Ram2icr, RW>

RAMCFG RAM x interrupt clear register x.

pub const fn ram2wpr1(self) -> Reg<Ram2wpr1, RW>

RAMCFG SRAM2 write protection register 1.

pub const fn ram2wpr2(self) -> Reg<Ram2wpr2, RW>

RAMCFG SRAM2 write protection register 2.

pub const fn ram2ecckeyr(self) -> Reg<Ram2ecckeyr, W>

RAMCFG SRAM x ECC key register.

pub const fn ram2erkeyr(self) -> Reg<Ram2erkeyr, W>

RAMCFG SRAM x erase key register.

pub const fn ram3cr(self) -> Reg<Ram3cr, RW>

RAMCFG SRAM x control register.

pub const fn ram3ier(self) -> Reg<Ram3ier, RW>

RAMCFG SRAM x interrupt enable register.

pub const fn ram3isr(self) -> Reg<Ram3isr, R>

RAMCFG RAMx interrupt status register.

pub const fn ram3sear(self) -> Reg<Ram3sear, R>

RAMCFG RAM x ECC single error address register.

pub const fn ram3dear(self) -> Reg<Ram3dear, R>

RAMCFG RAM x ECC double error address register.

pub const fn ram3icr(self) -> Reg<Ram3icr, RW>

RAMCFG RAM x interrupt clear register x.

pub const fn ram3ecckeyr(self) -> Reg<Ram3ecckeyr, W>

RAMCFG SRAM x ECC key register.

pub const fn ram3erkeyr(self) -> Reg<Ram3erkeyr, W>

RAMCFG SRAM x erase key register.

pub const fn ram4cr(self) -> Reg<Ram4cr, RW>

RAMCFG SRAM x control register.

pub const fn ram4isr(self) -> Reg<Ram4isr, R>

RAMCFG RAMx interrupt status register.

pub const fn ram4erkeyr(self) -> Reg<Ram4erkeyr, W>

RAMCFG SRAM x erase key register.

pub const fn ram5cr(self) -> Reg<Ram5cr, RW>

RAMCFG SRAM x control register.

pub const fn ram5ier(self) -> Reg<Ram5ier, RW>

RAMCFG SRAM x interrupt enable register.

pub const fn ram5isr(self) -> Reg<Ram5isr, R>

RAMCFG RAMx interrupt status register.

pub const fn ram5sear(self) -> Reg<Ram5sear, R>

RAMCFG RAM x ECC single error address register.

pub const fn ram5dear(self) -> Reg<Ram5dear, R>

RAMCFG RAM x ECC double error address register.

pub const fn ram5icr(self) -> Reg<Ram5icr, RW>

RAMCFG RAM x interrupt clear register x.

Trait Implementations§

§

impl Clone for Ramcfg

§

fn clone(&self) -> Ramcfg

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
§

impl PartialEq for Ramcfg

§

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

impl Copy for Ramcfg

§

impl Eq for Ramcfg

§

impl Send for Ramcfg

§

impl StructuralPartialEq for Ramcfg

§

impl Sync for Ramcfg

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.