Skip to main content

rticx_cortex_m/
lib.rs

1#![no_std]
2
3#[cfg(all(feature = "swtasks", feature = "async"))]
4compile_error!(
5    "rticx-cortex-m: the `swtasks` and `async` features are mutually exclusive; enable at most one"
6);
7
8pub mod export;
9
10pub use rticx_cortex_m_macro::app;