Robin Mueller
f1a1cd6054
All checks were successful
Rust/sat-rs/pipeline/head This commit looks good
17 lines
311 B
Rust
17 lines
311 B
Rust
#![no_std]
|
|
#![no_main]
|
|
|
|
use stm32h7_testapp as _; // memory layout + panic handler
|
|
|
|
// See https://crates.io/crates/defmt-test/0.3.0 for more documentation (e.g. about the 'state'
|
|
// feature)
|
|
#[defmt_test::tests]
|
|
mod tests {
|
|
use defmt::assert;
|
|
|
|
#[test]
|
|
fn it_works() {
|
|
assert!(true)
|
|
}
|
|
}
|