rticx-cortex-m 0.2.0

RTICX distribution for single-core Cortex-M targets (armv6-m and armv7-m and above)
1
2
3
4
5
6
7
8
9
10
#![no_std]

#[cfg(all(feature = "swtasks", feature = "async"))]
compile_error!(
    "rticx-cortex-m: the `swtasks` and `async` features are mutually exclusive; enable at most one"
);

pub mod export;

pub use rticx_cortex_m_macro::app;