embassy-mcxa

Crates

git

Versions

mcx-a256

Flavors

Instance

Trait Instance 

Source
pub trait Instance:
    SealedInstance
    + PeripheralType
    + 'static
    + Send
    + Gate<MrccPeriphConfig = I3cConfig> {
    type Interrupt: Interrupt;

    const PERF_INT_INCR: fn();
    const PERF_INT_WAKE_INCR: fn();
}
Expand description

I3C Instance

Required Associated Constants§

Required Associated Types§

Source

type Interrupt: Interrupt

Interrupt for this I3C instance.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl Instance for I3C0

Source§

const PERF_INT_INCR: fn() = {perf_counters::incr_interrupt_i3c0 as fn()}

Source§

const PERF_INT_WAKE_INCR: fn() = {perf_counters::incr_interrupt_i3c0_wake as fn()}

Source§

type Interrupt = I3C0