From: Andy Isaacson Date: Sat, 10 Jul 2021 20:25:08 +0000 (-0700) Subject: rust samd21 skeleton X-Git-Url: https://git.patrickod.com/vpn/?a=commitdiff_plain;ds=sidebyside;h=882e8be16da3fe125ad4d7947f8fb0d81276f2cb;p=tincan.git rust samd21 skeleton --- diff --git a/rs-lorachat/Cargo.toml b/rs-lorachat/Cargo.toml new file mode 100644 index 0000000..85fa008 --- /dev/null +++ b/rs-lorachat/Cargo.toml @@ -0,0 +1,8 @@ +[package] +name = "rs-lorachat" +version = "0.1.0" +authors = ["Andy Isaacson "] +edition = "2018" + +[dependencies] +feather_m0 = { git = "https://github.com/atsamd-rs/atsamd" } diff --git a/rs-lorachat/src/main.rs b/rs-lorachat/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/rs-lorachat/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +}