summaryrefslogtreecommitdiff
path: root/gr-analog/lib/frequency_modulator_fc_impl.cc
diff options
context:
space:
mode:
Diffstat (limited to 'gr-analog/lib/frequency_modulator_fc_impl.cc')
-rw-r--r--gr-analog/lib/frequency_modulator_fc_impl.cc6
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);
}