aboutsummaryrefslogtreecommitdiffstats
path: root/lib/misc_utils/controlled_rotator_cc_impl.cc
diff options
context:
space:
mode:
Diffstat (limited to 'lib/misc_utils/controlled_rotator_cc_impl.cc')
-rw-r--r--lib/misc_utils/controlled_rotator_cc_impl.cc6
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/misc_utils/controlled_rotator_cc_impl.cc b/lib/misc_utils/controlled_rotator_cc_impl.cc
index 5877ab1..ee72a6a 100644
--- a/lib/misc_utils/controlled_rotator_cc_impl.cc
+++ b/lib/misc_utils/controlled_rotator_cc_impl.cc
@@ -83,14 +83,16 @@ namespace gr {
while(ii < noutput_items){
//look for different values on phase increment control input
if(d_phase_inc != (*pp)){
+
set_phase_inc(*(pp)); //set new value of phase increment
float freq_offset_setting = (*(pp) / (2*M_PI)) * d_samp_rate; //send stream tag with a new value of the frequency offset
- int offset = nitems_written(0);
+
+ uint64_t offset = nitems_written(0);
pmt::pmt_t key = pmt::string_to_symbol("setting_freq_offset");
pmt::pmt_t value = pmt::from_double(freq_offset_setting);
add_item_tag(0,offset, key, value);
-
+
break;
}
pp++;