diff options
author | Tom Rondeau <trondeau@vt.edu> | 2013-03-18 12:50:11 -0400 |
---|---|---|
committer | Tom Rondeau <trondeau@vt.edu> | 2013-03-18 12:50:11 -0400 |
commit | 435b1d166f0c7092bbd5e1f788e75dbb6ade3a4b (patch) | |
tree | 66332e47e3b889d980a0f01a0857df9ea5d4137e /gr-analog/lib/frequency_modulator_fc_impl.cc | |
parent | 5f839d93c97a2ac86001dbabdfc3941cf23410a1 (diff) |
Revert "blocks: removed all nco/vco and fxpt stuff from core; now in gr-blocks."
This reverts commit fe70fa72ea22a133874337da2d03d30611e5ab1c.
Conflicts:
gnuradio-core/src/lib/general/CMakeLists.txt
gnuradio-core/src/lib/general/general.i
gnuradio-core/src/tests/CMakeLists.txt
Diffstat (limited to 'gr-analog/lib/frequency_modulator_fc_impl.cc')
-rw-r--r-- | gr-analog/lib/frequency_modulator_fc_impl.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gr-analog/lib/frequency_modulator_fc_impl.cc b/gr-analog/lib/frequency_modulator_fc_impl.cc index ae8c95d02f..2da7ee15f1 100644 --- a/gr-analog/lib/frequency_modulator_fc_impl.cc +++ b/gr-analog/lib/frequency_modulator_fc_impl.cc @@ -26,7 +26,7 @@ #include "frequency_modulator_fc_impl.h" #include <gr_io_signature.h> -#include <blocks/fxpt.h> +#include <gr_fxpt.h> #include <math.h> #include <boost/math/special_functions/trunc.hpp> @@ -70,8 +70,8 @@ namespace gr { float oi, oq; - int32_t angle = gr::blocks::fxpt::float_to_fixed (d_phase); - gr::blocks::fxpt::sincos(angle, &oq, &oi); + gr_int32 angle = gr_fxpt::float_to_fixed (d_phase); + gr_fxpt::sincos(angle, &oq, &oi); out[i] = gr_complex(oi, oq); } |