X-Git-Url: https://git.patrickod.com/vpn/?a=blobdiff_plain;f=rs-lorachat%2FCargo.toml;h=cff8d1af3e723f0f79f97d448383549302afd962;hb=726df4b11c6b68e05815efd162506272913f715f;hp=f64427cb35884f9fb8e1329a67b20bf22060a4f5;hpb=7ca2acacf40053d56427ec1ca0eab6d0ec1c67d7;p=tincan.git diff --git a/rs-lorachat/Cargo.toml b/rs-lorachat/Cargo.toml index f64427c..cff8d1a 100644 --- a/rs-lorachat/Cargo.toml +++ b/rs-lorachat/Cargo.toml @@ -6,7 +6,9 @@ edition = "2018" [dependencies] feather_m0 = { git = "https://github.com/atsamd-rs/atsamd" } - +# feather_m0 = { path = "/home/adi/opp/atsamd" } +cortex-m = "0.6" +embedded-hal = "0.2.3" [dependencies.cortex-m-rt] version = "0.6.12" @@ -14,13 +16,35 @@ optional = true [dependencies.atsamd-hal] version = "0.12" -default-features = false [dependencies.panic-halt] version = "0.2" optional = true +[dependencies.usb-device] +version = "0.2" +optional = true + +[dependencies.rtic-monotonic] +version = "=0.1.0-alpha.1" +optional = true + +[dependencies.usbd-serial] +version = "0.1" +optional = true + +[dev-dependencies] +cortex-m-semihosting = "0.3" +heapless = "0.5" + +[dev-dependencies.cortex-m-rtic] +version = "0.6.0-alpha.4" + [features] default = ["rt", "atsamd-hal/samd21g", "panic_halt"] rt = ["cortex-m-rt", "atsamd-hal/samd21g-rt"] panic_halt = ["panic-halt"] +usb = ["atsamd-hal/usb", "usb-device", "usbd-serial"] +unproven = ["atsamd-hal/unproven"] +# Enable pins for the radio on "RadioFruits" with RFM95, RFM96, RFM69 +rfm = []