usbnoise, with sketch of a decimator/extractor
... | ... | @@ -6,8 +6,8 @@ edition = "2021" |
[dependencies] | ||
cortex-m = "0.7" | ||
embassy-rp = { version = "0.1.0", features = ["defmt", "unstable-traits", "nightly", "unstable-pac", "time-driver"] } | ||
embassy-time = { version = "0.1.0", features = ["defmt", "defmt-timestamp-uptime"] } | ||
embassy-rp = { version = "0.1.0", features = ["unstable-traits", "nightly", "unstable-pac", "time-driver"] } | ||
embassy-time = { version = "0.1.0" } | ||
defmt = { version = "0.3", optional = true } | ||
# rtt-target = { version = "0.3", optional = true } | ||
... | ... | @@ -21,8 +21,10 @@ log = { version = "0.4", default-features = false } |
[dev-dependencies] | ||
cortex-m-rt = "0.7.0" | ||
cortex-m = { version = "0.7", features = ["critical-section-single-core"]} | ||
embassy-executor = { version = "0.1.0", features = ["defmt", "integrated-timers"] } | ||
panic-probe = { version = "0.3", features = ["print-defmt"] } | ||
embassy-executor = { version = "0.1.0", features = ["integrated-timers"] } | ||
embassy-usb = { version = "0.1.0", features = ["defmt"] } | ||
embassy-futures = { version = "0.1.0" } | ||
panic-probe = { version = "0.3" } | ||
defmt-rtt = { version = "0.3" } | ||
getrandom = { version = "0.2", default-features = false, features = ["custom"]} | ||
... | ... | @@ -34,10 +36,14 @@ debug = 2 |
[patch.crates-io] | ||
# embassy isn't released to crates.io yet | ||
# embassy-rp = { git = "https://github.com/embassy-rs/embassy", rev = "1d6f5493e7764767eb592e0b90d6b07d46b100ca" } | ||
# embassy-executor = { git = "https://github.com/embassy-rs/embassy", rev = "1d6f5493e7764767eb592e0b90d6b07d46b100ca" } | ||
# embassy-time = { git = "https://github.com/embassy-rs/embassy", rev = "1d6f5493e7764767eb592e0b90d6b07d46b100ca" } | ||
# embassy-rp = { git = "https://github.com/embassy-rs/embassy", rev = "8c42b26fc623f556c865a0f27c7f956b06bedff9" } | ||
# embassy-executor = { git = "https://github.com/embassy-rs/embassy", rev = "8c42b26fc623f556c865a0f27c7f956b06bedff9" } | ||
# embassy-time = { git = "https://github.com/embassy-rs/embassy", rev = "8c42b26fc623f556c865a0f27c7f956b06bedff9" } | ||
# embassy-usb = { git = "https://github.com/embassy-rs/embassy", rev = "8c42b26fc623f556c865a0f27c7f956b06bedff9" } | ||
# embassy-futures = { git = "https://github.com/embassy-rs/embassy", rev = "8c42b26fc623f556c865a0f27c7f956b06bedff9" } | ||
embassy-rp = { path = "/home/matt/3rd/rs/embassy/embassy-rp" } | ||
embassy-executor = { path = "/home/matt/3rd/rs/embassy/embassy-executor" } | ||
embassy-time = { path = "/home/matt/3rd/rs/embassy/embassy-time" } | ||
embassy-usb = { path = "/home/matt/3rd/rs/embassy/embassy-usb" } | ||
embassy-futures = { path = "/home/matt/3rd/rs/embassy/embassy-futures" } |
examples/usbnoise.rs
0 → 100644
Please register or sign in to comment