]> patrickod personal git archive - tincan.git/commitdiff
rust samd21 skeleton
authorAndy Isaacson <adi@hexapodia.org>
Sat, 10 Jul 2021 20:25:08 +0000 (13:25 -0700)
committerAndy Isaacson <adi@hexapodia.org>
Sat, 10 Jul 2021 20:25:08 +0000 (13:25 -0700)
rs-lorachat/Cargo.toml [new file with mode: 0644]
rs-lorachat/src/main.rs [new file with mode: 0644]

diff --git a/rs-lorachat/Cargo.toml b/rs-lorachat/Cargo.toml
new file mode 100644 (file)
index 0000000..85fa008
--- /dev/null
@@ -0,0 +1,8 @@
+[package]
+name = "rs-lorachat"
+version = "0.1.0"
+authors = ["Andy Isaacson <adi@hexapodia.org>"]
+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 (file)
index 0000000..e7a11a9
--- /dev/null
@@ -0,0 +1,3 @@
+fn main() {
+    println!("Hello, world!");
+}