#[cfg(all(target_arch = "arm", target_os = "none"))]
mod arch_dependent_impl {
use defmt_rtt as _; use nrf52840_hal as _; use panic_probe as _;
pub use defmt_test::tests;
#[defmt::panic_handler]
fn panic() -> ! {
cortex_m::asm::udf()
}
}
#[cfg(not(all(target_arch = "arm", target_os = "none")))]
mod arch_dependent_impl {
extern crate std;
pub use noop_attr::noop as tests;
}
pub use arch_dependent_impl::tests;