diff options
author | Brian Cully <bjc@kublai.com> | 2019-08-19 21:06:42 -0400 |
---|---|---|
committer | Brian Cully <bjc@kublai.com> | 2019-08-19 21:06:42 -0400 |
commit | 784db2bc6ca1dac88a60fcf5919ae5f7fa98f688 (patch) | |
tree | aa8a5e5ca7ae0af26d03f4bc98c2fa4905d56a80 /usb | |
parent | a3b976df4b1214c6f4e2a053724398b1a5e1767b (diff) | |
download | bleusb-784db2bc6ca1dac88a60fcf5919ae5f7fa98f688.tar.gz bleusb-784db2bc6ca1dac88a60fcf5919ae5f7fa98f688.zip |
Clumsy, but BLE advertising is up.
Diffstat (limited to 'usb')
-rw-r--r-- | usb/Cargo.lock | 5 | ||||
-rw-r--r-- | usb/Cargo.toml | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/usb/Cargo.lock b/usb/Cargo.lock index f9d17e8..a360037 100644 --- a/usb/Cargo.lock +++ b/usb/Cargo.lock @@ -423,6 +423,11 @@ dependencies = [ "vcell 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[patch.unused]] +name = "atsamd-hal" +version = "0.6.0" +source = "git+https://github.com/atsamd-rs/atsamd?rev=97d55c19#97d55c19f0e5234cf9766311477bc696357271fd" + [metadata] "checksum aligned 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d39da9b88ae1a81c03c9c082b8db83f1d0e93914126041962af61034ab44c4a5" "checksum aligned 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "d3a316c7ea8e1e9ece54862c992def5a7ac14de9f5832b69d71760680efeeefa" diff --git a/usb/Cargo.toml b/usb/Cargo.toml index 248d017..4d23e6e 100644 --- a/usb/Cargo.toml +++ b/usb/Cargo.toml @@ -25,6 +25,7 @@ bootkbd = "0.2" atsamd-usb-host = { path = "../../usbh/atsamd-usb-host" } [patch.crates-io] +atsamd-hal = { git = "https://github.com/atsamd-rs/atsamd", rev = "97d55c19" } #bootkbd = { git = "https://github.com/bjc/bootkbd.git", rev = "49827fce5adbaf636b893919f31c0dbd97bb3eb4" } #usb-host = { git = "https://github.com/bjc/usb-host.git", rev = "b0be48424e81384de3280b5a5ac521d694b82e15" } #trinket_m0 = { git = "https://github.com/atsamd-rs/atsamd.git", rev = "53f8d846e40715c8592d171d9a57b66ee303207a" } |