embassy-mspm0

Crates

git

Versions

mspm0l1304rge

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.
GROUP0
GROUP0 typelevel interrupt.
GROUP1
GROUP1 typelevel interrupt.
I2C0
I2C0 typelevel interrupt.
I2C1
I2C1 typelevel interrupt.
SPI0
SPI0 typelevel interrupt.
TIMG0
TIMG0 typelevel interrupt.
TIMG1
TIMG1 typelevel interrupt.
TIMG2
TIMG2 typelevel interrupt.
TIMG4
TIMG4 typelevel interrupt.
UART0
UART0 typelevel interrupt.
UART1
UART1 typelevel interrupt.

Traits§

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