Skip to content

Commit

Permalink
Revert "Merge pull request #452 from robotastic/post-valve"
Browse files Browse the repository at this point in the history
This reverts commit d104d64, reversing
changes made to a4e5cd2.
  • Loading branch information
robotastic committed May 15, 2021
1 parent dc90ae4 commit 3338bb3
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions trunk-recorder/recorders/p25_recorder.cc
Original file line number Diff line number Diff line change
Expand Up @@ -139,17 +139,16 @@ void p25_recorder::initialize_prefilter() {




connect(self(), 0, valve, 0);
if (double_decim) {
connect(self(), 0, bandpass_filter, 0);
connect(valve, 0, bandpass_filter, 0);
connect(bandpass_filter, 0, mixer, 0);
connect(bfo, 0, mixer, 1);
} else {
connect(self(), 0, mixer, 0);
connect(valve, 0, mixer, 0);
connect(lo, 0, mixer, 1);
}
connect(mixer, 0, valve, 0);
connect(valve, 0, lowpass_filter, 0);
connect(mixer, 0, lowpass_filter, 0);
connect(lowpass_filter, 0, arb_resampler, 0);
connect(arb_resampler, 0, cutoff_filter, 0);

Expand Down

0 comments on commit 3338bb3

Please sign in to comment.