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

fix todo

parent f17028d4
No related branches found
No related tags found
1 merge request!2integrate codec2 fsk demodulator.
Pipeline #4453 passed
......@@ -131,10 +131,7 @@ impl<I: Iterator<Item = Complex>> Iterator for Fsk<I> {
}
let n_bits = unsafe { (*self.internal).n_bits };
// TODO make this one method
for _ in 0..n_bits {
self.output_cache.push_back(0.0);
}
self.output_cache.resize(n_bits.try_into().unwrap(), 0.0);
let n_sym = unsafe { (*self.internal).n_sym };
let mut rx_filt = vec![0.0; usize::try_from(M * n_sym).unwrap()];
......
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