diff options
author | Tom Rondeau <trondeau@vt.edu> | 2013-05-09 12:05:20 -0400 |
---|---|---|
committer | Tom Rondeau <trondeau@vt.edu> | 2013-05-09 12:05:20 -0400 |
commit | d9f78af56cfbe325111f7074a766f4a441e8ddd2 (patch) | |
tree | 3018850c9b872dfe54d2bddb18fc1e5ec89c83ff /gr-fcd/examples | |
parent | c08905e8009a435cdc057c41b2367ee964761fb9 (diff) |
fcd: fixed namespace, api for fcd.
Diffstat (limited to 'gr-fcd/examples')
-rw-r--r-- | gr-fcd/examples/c++/fcd_nfm_rx.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gr-fcd/examples/c++/fcd_nfm_rx.cc b/gr-fcd/examples/c++/fcd_nfm_rx.cc index e59406afde..1c99a10d8c 100644 --- a/gr-fcd/examples/c++/fcd_nfm_rx.cc +++ b/gr-fcd/examples/c++/fcd_nfm_rx.cc @@ -37,7 +37,7 @@ #include <gnuradio/filter/fir_filter_ccf.h> #include <gnuradio/analog/quadrature_demod_cf.h> #include <gnuradio/audio/sink.h> -#include <gnuradio/fcd/fcd_source_c.h> +#include <gnuradio/fcd/source_c.h> // other includes #include <iostream> @@ -80,7 +80,7 @@ int main(int argc, char **argv) top_block_sptr tb = make_top_block("fcd_nfm_rx"); // FCD source - fcd_source_c_sptr fcd = fcd_make_source_c(device); + gr::fcd::source_c::sptr fcd = gr::fcd::source_c::make(device); fcd->set_freq_khz(freq); fcd->set_lna_gain(gain); |