summaryrefslogtreecommitdiff
path: root/gr-fcd/examples/c++/fcd_nfm_rx.cc
diff options
context:
space:
mode:
Diffstat (limited to 'gr-fcd/examples/c++/fcd_nfm_rx.cc')
-rw-r--r--gr-fcd/examples/c++/fcd_nfm_rx.cc12
1 files changed, 6 insertions, 6 deletions
diff --git a/gr-fcd/examples/c++/fcd_nfm_rx.cc b/gr-fcd/examples/c++/fcd_nfm_rx.cc
index 97ef7cf19..0ebc5d288 100644
--- a/gr-fcd/examples/c++/fcd_nfm_rx.cc
+++ b/gr-fcd/examples/c++/fcd_nfm_rx.cc
@@ -1,16 +1,16 @@
/*
* Copyright 2011 Free Software Foundation, Inc.
- *
+ *
* GNU Radio is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3, or (at your option)
* any later version.
- *
+ *
* GNU Radio is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
- *
+ *
* You should have received a copy of the GNU General Public License
* along with GNU Radio; see the file COPYING. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street,
@@ -19,10 +19,10 @@
/*
* Simple GNU Radio C++ example for using the Funcube Dongle.
- *
+ *
* Construct a simple narrow band FM receiver using the gr-fcd
* block as source.
- *
+ *
* This example uses "hw:1" as FCD source device and the default
* audio device for output.
*
@@ -83,7 +83,7 @@ int main(int argc, char **argv)
fcd_source_c_sptr fcd = fcd_make_source_c(device);
fcd->set_freq_khz(freq);
fcd->set_lna_gain(gain);
-
+
// Low pass filter
std::vector<float> taps = gr_firdes::low_pass(1.0, 96000, 5000.0, 1000.0);
gr_fir_filter_ccf_sptr filter = gr_make_fir_filter_ccf (2, taps);