embassy-mspm0

Crates

git

Versions

mspm0c1104dyy

Flavors

Module typelevel

Source
Expand description

Type-level interrupt infrastructure.

This module contains one type per interrupt. This is used for checking at compile time that the interrupts are correctly bound to HAL drivers.

As an end user, you shouldn’t need to use this module directly. Use the crate::bind_interrupts! macro to bind interrupts, and the [crate::interrupt] module to manually register interrupt handlers and manipulate interrupts directly (pending/unpending, enabling/disabling, setting the priority, etc…)

Enums§

ADC0
ADC0 typelevel interrupt.
DMA
DMA typelevel interrupt.
GPIOA
GPIOA typelevel interrupt.
GROUP0
GROUP0 typelevel interrupt.
I2C0
I2C0 typelevel interrupt.
SPI0
SPI0 typelevel interrupt.
TIMA0
TIMA0 typelevel interrupt.
TIMG8
TIMG8 typelevel interrupt.
TIMG14
TIMG14 typelevel interrupt.
UART0
UART0 typelevel interrupt.

Traits§

Binding
Compile-time assertion that an interrupt has been bound to a handler.
Handler
Interrupt handler trait.
Interrupt
Type-level interrupt.