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

change device id to string, and add gain setting

parent c3e87e8f
No related branches found
No related tags found
No related merge requests found
Pipeline #4647 passed
# rtl_fm parameters
frequency = 430_500_000 # center frequency, Hz
device_id = 0 # ID of your RTL-SDR; 0 is default
device_id = "0" # ID of your RTL-SDR; 0 is default
# gain = 30.0 # dB. Uses AGC when not specified
# if set to true:
# - expects 48k samples/second, 16-bit LE IQ.
......
......@@ -4,6 +4,10 @@ use anyhow::{bail, Context};
use serde::Deserialize;
use serde_with::{serde_as, DurationSeconds};
fn default_device_id() -> String {
"0".to_string()
}
#[serde_as]
#[derive(Deserialize, Clone)]
pub struct BeaconConfig {
......@@ -31,8 +35,9 @@ pub struct FelinetConfig {
#[derive(Deserialize, Clone)]
pub struct Config {
pub frequency: u32,
#[serde(default)]
pub device_id: u32,
#[serde(default = "default_device_id")]
pub device_id: String,
pub gain: Option<f32>,
#[serde(default)]
pub use_stdin: bool,
pub max_deviation: i32,
......
......@@ -27,7 +27,7 @@ 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).unwrap();
let rtl = RtlSdr::new(config.frequency, &config.device_id, config.gain).unwrap();
Box::new(rtl)
};
......
......@@ -11,14 +11,19 @@ pub struct RtlSdr {
}
impl RtlSdr {
pub fn new(freq: u32, device_id: u32) -> anyhow::Result<Self> {
pub fn new(freq: u32, device_id: &str, gain: Option<f32>) -> anyhow::Result<Self> {
let freq = format!("{freq}");
let device_id = format!("{device_id}");
let mut args = vec![
"rtl_fm", "-f", &freq, "-M", "raw", "-F9", "-p", "0", "-d", device_id, "-s", "48000",
];
let mut gain_s = String::new();
if let Some(g) = gain {
args.push("-g");
gain_s.push_str(&format!("{:.2}", g));
args.push(&gain_s);
}
let mut process = Popen::create(
&[
"rtl_fm", "-f", &freq, "-M", "raw", "-F9", "-p", "0", "-d", &device_id, "-s",
"48000",
],
&args,
PopenConfig {
stdout: Redirection::Pipe,
stderr: Redirection::Pipe,
......
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