summaryrefslogtreecommitdiff
path: root/src/main.rs
AgeCommit message (Collapse)Author
2018-07-29Extract devices into separate filesYuval Adam
2018-07-26Extract libusb context to a longer living lifetimeYuval Adam
This is due to a limitation where we can't hold a struct that has both the context and a device handle (that internally references back to it). The libusb context has to outlive the device handle. Github issue: https://github.com/dcuddeback/libusb-rs/issues/3 Example solution via IRC: https://play.rust-lang.org/?gist=c68bda27266249c781e6335c4127f301&version=stable&mode=debug&edition=2015
2018-07-23Add basic USB device discoveryYuval Adam
2018-07-23Initial RtlSdr struct and implYuval Adam
2018-07-23Add basic USB device enumerationYuval Adam