blob: 680c2c8dba820abb2ba61323473267be0427d251 (
plain)
1
2
3
4
5
6
7
8
9
|
//! Embassy executor and interrupt handling specific to cortex-m devices.
#![no_std]
// This mod MUST go first, so that the others see its macros.
pub(crate) mod fmt;
pub mod executor;
pub mod interrupt;
pub mod peripheral;
|