Struct TEE

Source
pub struct TEE { /* private fields */ }

Implementations§

Source§

impl TEE

Source

pub const PTR: *const <TEE as Deref>::Target = {0x60098000 as *const <esp32c6::TEE as core::ops::Deref>::Target}

Pointer to the register block

Source

pub unsafe fn steal() -> TEE

Unsafely create an instance of this peripheral out of thin air.

§Safety

You must ensure that you’re only using one instance of this type at a time.

Source

pub const fn ptr() -> *const <TEE as Deref>::Target

Return the pointer to the register block

Methods from Deref<Target = RegisterBlock>§

Source

pub fn m0_mode_ctrl(&self) -> &Reg<M0_MODE_CTRL_SPEC>

0x00 - Tee mode control register

Source

pub fn m1_mode_ctrl(&self) -> &Reg<M1_MODE_CTRL_SPEC>

0x04 - Tee mode control register

Source

pub fn m2_mode_ctrl(&self) -> &Reg<M2_MODE_CTRL_SPEC>

0x08 - Tee mode control register

Source

pub fn m3_mode_ctrl(&self) -> &Reg<M3_MODE_CTRL_SPEC>

0x0c - Tee mode control register

Source

pub fn m4_mode_ctrl(&self) -> &Reg<M4_MODE_CTRL_SPEC>

0x10 - Tee mode control register

Source

pub fn m5_mode_ctrl(&self) -> &Reg<M5_MODE_CTRL_SPEC>

0x14 - Tee mode control register

Source

pub fn m6_mode_ctrl(&self) -> &Reg<M6_MODE_CTRL_SPEC>

0x18 - Tee mode control register

Source

pub fn m7_mode_ctrl(&self) -> &Reg<M7_MODE_CTRL_SPEC>

0x1c - Tee mode control register

Source

pub fn m8_mode_ctrl(&self) -> &Reg<M8_MODE_CTRL_SPEC>

0x20 - Tee mode control register

Source

pub fn m9_mode_ctrl(&self) -> &Reg<M9_MODE_CTRL_SPEC>

0x24 - Tee mode control register

Source

pub fn m10_mode_ctrl(&self) -> &Reg<M10_MODE_CTRL_SPEC>

0x28 - Tee mode control register

Source

pub fn m11_mode_ctrl(&self) -> &Reg<M11_MODE_CTRL_SPEC>

0x2c - Tee mode control register

Source

pub fn m12_mode_ctrl(&self) -> &Reg<M12_MODE_CTRL_SPEC>

0x30 - Tee mode control register

Source

pub fn m13_mode_ctrl(&self) -> &Reg<M13_MODE_CTRL_SPEC>

0x34 - Tee mode control register

Source

pub fn m14_mode_ctrl(&self) -> &Reg<M14_MODE_CTRL_SPEC>

0x38 - Tee mode control register

Source

pub fn m15_mode_ctrl(&self) -> &Reg<M15_MODE_CTRL_SPEC>

0x3c - Tee mode control register

Source

pub fn m16_mode_ctrl(&self) -> &Reg<M16_MODE_CTRL_SPEC>

0x40 - Tee mode control register

Source

pub fn m17_mode_ctrl(&self) -> &Reg<M17_MODE_CTRL_SPEC>

0x44 - Tee mode control register

Source

pub fn m18_mode_ctrl(&self) -> &Reg<M18_MODE_CTRL_SPEC>

0x48 - Tee mode control register

Source

pub fn m19_mode_ctrl(&self) -> &Reg<M19_MODE_CTRL_SPEC>

0x4c - Tee mode control register

Source

pub fn m20_mode_ctrl(&self) -> &Reg<M20_MODE_CTRL_SPEC>

0x50 - Tee mode control register

Source

pub fn m21_mode_ctrl(&self) -> &Reg<M21_MODE_CTRL_SPEC>

0x54 - Tee mode control register

Source

pub fn m22_mode_ctrl(&self) -> &Reg<M22_MODE_CTRL_SPEC>

0x58 - Tee mode control register

Source

pub fn m23_mode_ctrl(&self) -> &Reg<M23_MODE_CTRL_SPEC>

0x5c - Tee mode control register

Source

pub fn m24_mode_ctrl(&self) -> &Reg<M24_MODE_CTRL_SPEC>

0x60 - Tee mode control register

Source

pub fn m25_mode_ctrl(&self) -> &Reg<M25_MODE_CTRL_SPEC>

0x64 - Tee mode control register

Source

pub fn m26_mode_ctrl(&self) -> &Reg<M26_MODE_CTRL_SPEC>

0x68 - Tee mode control register

Source

pub fn m27_mode_ctrl(&self) -> &Reg<M27_MODE_CTRL_SPEC>

0x6c - Tee mode control register

Source

pub fn m28_mode_ctrl(&self) -> &Reg<M28_MODE_CTRL_SPEC>

0x70 - Tee mode control register

Source

pub fn m29_mode_ctrl(&self) -> &Reg<M29_MODE_CTRL_SPEC>

0x74 - Tee mode control register

Source

pub fn m30_mode_ctrl(&self) -> &Reg<M30_MODE_CTRL_SPEC>

0x78 - Tee mode control register

Source

pub fn m31_mode_ctrl(&self) -> &Reg<M31_MODE_CTRL_SPEC>

0x7c - Tee mode control register

Source

pub fn clock_gate(&self) -> &Reg<CLOCK_GATE_SPEC>

0x80 - Clock gating register

Source

pub fn date(&self) -> &Reg<DATE_SPEC>

0xffc - Version register

Trait Implementations§

Source§

impl Debug for TEE

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Source§

impl Deref for TEE

Source§

type Target = <TEE as Deref>::Target

The resulting type after dereferencing.
Source§

fn deref(&self) -> &<TEE as Deref>::Target

Dereferences the value.
Source§

impl DerefMut for TEE

Source§

fn deref_mut(&mut self) -> &mut <TEE as Deref>::Target

Mutably dereferences the value.
Source§

impl Peripheral for TEE

Source§

type P = TEE

Peripheral singleton type
Source§

unsafe fn clone_unchecked(&mut self) -> <TEE as Peripheral>::P

Unsafely clone (duplicate) a peripheral singleton. Read more
Source§

fn into_ref<'a>(self) -> PeripheralRef<'a, Self::P>
where Self: 'a,

Convert a value into a PeripheralRef. Read more

Auto Trait Implementations§

§

impl Freeze for TEE

§

impl RefUnwindSafe for TEE

§

impl Send for TEE

§

impl Sync for TEE

§

impl Unpin for TEE

§

impl UnwindSafe for TEE

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> 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<P, T> Receiver for P
where P: Deref<Target = T> + ?Sized, T: ?Sized,

Source§

type Target = T

🔬This is a nightly-only experimental API. (arbitrary_self_types)
The target type on which the method may be called.
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.