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

forgot to wire up max_deviation setting

parent 81d94cc1
No related branches found
No related tags found
No related merge requests found
Pipeline #5150 passed
......@@ -145,7 +145,7 @@ pub struct Fsk<I: Iterator<Item = Complex>> {
}
impl<I: Iterator<Item = Complex>> Fsk<I> {
pub fn new(iq_iter: I) -> Self {
pub fn new(iq_iter: I, max_deviation: i32) -> Self {
const P: i32 = 5;
const FS: i32 = 9600 * P;
......@@ -153,8 +153,8 @@ impl<I: Iterator<Item = Complex>> Fsk<I> {
// Set upper/lower bound on the FSK peaks, from center
// (Hz)
let fsk_lower = -15_000;
let fsk_upper = 15_000;
let fsk_lower = -max_deviation;
let fsk_upper = max_deviation;
unsafe {
fsk_set_freq_est_limits(internal, fsk_lower, fsk_upper);
......
......@@ -47,7 +47,7 @@ pub fn decode_forever(felinet_send: mpsc::Sender<SemiPacketIn>, config: &Config,
Complex { real, imag }
});
let iq_no_dc = RemoveDcBias::new(iq);
let soft_bits = Fsk::new(iq_no_dc);
let soft_bits = Fsk::new(iq_no_dc, config.max_deviation);
let demod = Demod::new(soft_bits);
demod.demod(|mut p| {
......
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