Add initial project structure and implement async main for Pico W

This commit is contained in:
2026-06-04 14:46:22 -05:00
parent 688e5b404b
commit b1d9594b25
15 changed files with 79 additions and 9 deletions
+13
View File
@@ -0,0 +1,13 @@
#![no_std]
#![no_main]
use defmt_rtt as _;
use panic_probe as _;
#[defmt_test::tests]
mod tests {
#[test]
fn it_works() {
assert!(true);
}
}
-4
View File
@@ -1,4 +0,0 @@
#[test]
fn test_sample() {
assert_eq!(1, 1);
}