add: all files

This commit is contained in:
Charles
2025-03-23 19:06:13 -07:00
parent fe87f5271e
commit 1bc99bd808
36 changed files with 1484 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
#![no_std]
#![cfg_attr(not(test), no_main)] // #![no_main] interfers with 'cargo test' when targeting the host machine.
extern crate avr_std_stub;
#[no_mangle]
#[cfg(not(test))] // The main function interfers with 'cargo test' when targeting the host machine.
fn main() {
}
#[cfg(test)]
mod test {
#[test]
fn test_foo() {
assert_eq!(1, 1);
}
}