tim2 compiled

This commit is contained in:
Priec
2025-10-12 18:07:37 +02:00
parent 325f47debc
commit cc94aab412
10 changed files with 697 additions and 0 deletions

16
tim2/tests/integration.rs Normal file
View File

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