Skip to content
Snippets Groups Projects
Commit 9498885a authored by Stephen D's avatar Stephen D
Browse files

add bias-T config

parent a3274abc
No related branches found
No related tags found
No related merge requests found
Pipeline #4746 passed
# rtl_fm parameters
frequency = 430_500_000 # center frequency, Hz
device_id = "0" # ID of your RTL-SDR; 0 is default
bias_t = false
# gain = 30.0 # dB. Uses AGC when not specified
# if set to true:
......
......@@ -37,6 +37,8 @@ pub struct Config {
pub frequency: u32,
#[serde(default = "default_device_id")]
pub device_id: String,
#[serde(default)]
pub bias_t: bool,
pub gain: Option<f32>,
#[serde(default)]
pub use_stdin: bool,
......
......@@ -27,7 +27,13 @@ pub fn decode_forever(felinet_send: mpsc::Sender<SemiPacketIn>, config: &Config,
Box::new(stdin.bytes().map(|x| x.expect("Could not read from stdin")))
} else {
let rtl = RtlSdr::new(config.frequency, &config.device_id, config.gain).unwrap();
let rtl = RtlSdr::new(
config.frequency,
&config.device_id,
config.gain,
config.bias_t,
)
.unwrap();
Box::new(rtl)
};
......
......@@ -11,7 +11,12 @@ pub struct RtlSdr {
}
impl RtlSdr {
pub fn new(freq: u32, device_id: &str, gain: Option<f32>) -> anyhow::Result<Self> {
pub fn new(
freq: u32,
device_id: &str,
gain: Option<f32>,
bias_t: bool,
) -> anyhow::Result<Self> {
let freq = format!("{freq}");
let mut args = vec![
"rtl_fm", "-f", &freq, "-M", "raw", "-F9", "-p", "0", "-d", device_id, "-s", "48000",
......@@ -22,6 +27,9 @@ impl RtlSdr {
gain_s.push_str(&format!("{:.2}", g));
args.push(&gain_s);
}
if bias_t {
args.push("-T");
}
let mut process = Popen::create(
&args,
PopenConfig {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment