From 882e8be16da3fe125ad4d7947f8fb0d81276f2cb Mon Sep 17 00:00:00 2001 From: Andy Isaacson Date: Sat, 10 Jul 2021 13:25:08 -0700 Subject: [PATCH] rust samd21 skeleton --- rs-lorachat/Cargo.toml | 8 ++++++++ rs-lorachat/src/main.rs | 3 +++ 2 files changed, 11 insertions(+) create mode 100644 rs-lorachat/Cargo.toml create mode 100644 rs-lorachat/src/main.rs 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!"); +} -- 2.42.0