diff options
| author | Yuval Adam <_@yuv.al> | 2021-04-28 09:48:55 +0300 |
|---|---|---|
| committer | Yuval Adam <_@yuv.al> | 2021-04-28 09:48:55 +0300 |
| commit | 25db452b3fb9c83ff8600362467bcde63591d67f (patch) | |
| tree | 80e35e5ec18c6559917829f810d64b1be0f66070 /src/tuners/fc0013.rs | |
| parent | 5979051bd97b61762567fb4710de3dc8a69135c6 (diff) | |
WIP
Diffstat (limited to 'src/tuners/fc0013.rs')
| -rw-r--r-- | src/tuners/fc0013.rs | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/tuners/fc0013.rs b/src/tuners/fc0013.rs index b7d5398..b67b6c3 100644 --- a/src/tuners/fc0013.rs +++ b/src/tuners/fc0013.rs @@ -33,27 +33,27 @@ impl Tuner for FC0013 { unimplemented!() } - fn exit(&self) { + fn exit(&self, handle: &RtlSdrDeviceHandle) { unimplemented!() } - fn set_freq(&self, _freq: u32) { + fn set_frequency(&self, _freq: u32, handle: &RtlSdrDeviceHandle) { unimplemented!() } - fn set_bandwidth(&mut self, _bw: u32, _rate: u32, _handle: &RtlSdrDeviceHandle) { + fn set_bandwidth(&mut self, _bw: u32, _handle: &RtlSdrDeviceHandle) { unimplemented!() } - fn set_gain(&self, _gain: u32) { + fn set_gain(&self, _gain: u32, handle: &RtlSdrDeviceHandle) { unimplemented!() } - fn set_if_gain(&self, _if_gain: u32) { + fn set_if_gain(&self, _if_gain: u32, handle: &RtlSdrDeviceHandle) { unimplemented!() } - fn set_gain_mode(&self, _mode: bool) { + fn set_gain_mode(&self, _mode: bool, handle: &RtlSdrDeviceHandle) { unimplemented!() } |
