hal_select/
lib.rs

1#![cfg_attr(not(test), no_std)]
2
3pub mod asm;
4
5pub use hal_api::*;
6
7#[cfg(all(freestanding, target_arch = "arm"))]
8pub mod arm;
9#[cfg(all(freestanding, target_arch = "arm"))]
10pub use arm::*;
11
12#[cfg(not(freestanding))]
13pub mod testing;
14#[cfg(not(freestanding))]
15pub use testing::*;