This commit is contained in:
2026-06-15 13:08:12 +02:00
parent d2bc12d5fd
commit 2e76bae04f
4 changed files with 30 additions and 21 deletions

View File

@ -17,11 +17,12 @@ fn main() -> Result<(), Box<dyn Error>> {
let pipeline = source
.agc(20_000_000.0, 1.0, 0.001, 100.0)
.fir::<64>(taps, 4);
.fir::<64>(taps, 4)
.demodulate();
for sample_r in pipeline {
let sample = sample_r?;
println!("sample : {} + i{}", sample.re, sample.im);
for phase_r in pipeline {
let phase = phase_r?;
println!("phase : {}", phase);
}
Ok(())