Version 0.2.0 in crates.io has a bug that's been fixed on master:
|
pub fn start_rx(&self, config: &Config) -> Result<()> { |
|
let mut inner = self.inner.lock().unwrap(); |
|
inner.ensure_mode(Mode::Off)?; |
|
inner.mode = Mode::Transmit; |
(should be inner.mode = Mode::Receive;)
Could a new release be made to publish the fix from 6f73fa0?
Version 0.2.0 in crates.io has a bug that's been fixed on
master:seify-hackrfone/src/lib.rs
Lines 257 to 260 in 506a3d9
(should be
inner.mode = Mode::Receive;)Could a new release be made to publish the fix from 6f73fa0?