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

change fsk filter width

parent 53be0832
No related branches found
No related tags found
1 merge request!2integrate codec2 fsk demodulator.
......@@ -106,8 +106,10 @@ impl<I: Iterator<Item = Complex>> Fsk<I> {
let internal = unsafe { fsk_create_hbr(FS, 9600, M, 5, N_SYM, -1, 0) };
let fsk_lower = -FS / 2;
let fsk_upper = FS / 2;
// Set upper/lower bound on the FSK peaks, from center
// (Hz)
let fsk_lower = -10_000;
let fsk_upper = 10_000;
unsafe { fsk_set_freq_est_limits(internal, fsk_lower, fsk_upper) };
......
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