Skip to content

Commit

Permalink
fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
marenz2569 committed May 19, 2024
1 parent 8ec975e commit 6f3eba9
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/r09-receiver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -136,8 +136,7 @@ auto receiver_main(const int frequency, const int offset, const int RF,
/*alloc=*/1.0 / tap_size);
// do not decimate directly to the final frequency, since there will be some
// jitter
unsigned decimation = samp_rate / decimation / 10;
auto fir = gr::filter::fir_filter_fff::make(/*decimation=*/decimation,
auto fir = gr::filter::fir_filter_fff::make(/*decimation=*/samp_rate / decimation / 10,
averaging_filter);
auto populator = gr::prometheus::PrometheusGaugePopulator::make(
/*gauge=*/stream_signal_strength);
Expand Down

0 comments on commit 6f3eba9

Please sign in to comment.