copy only

This commit is contained in:
Filipriec
2025-10-28 15:02:53 +01:00
parent 73c45bff85
commit 847b6258a5
12 changed files with 1831 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
#![no_std]
#![no_main]
// 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)
}
}