Remove debug printf leftover

Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
This commit is contained in:
Sylvain Munaut 2013-03-03 14:30:55 +01:00
parent 0d0d34af05
commit a7771bd95d
1 changed files with 1 additions and 3 deletions

View File

@ -64,7 +64,7 @@ iqbalance_optimize_c::forecast (int noutput_items, gr_vector_int &ninput_items_r
ninput_items_required[i] = FFT_SIZE * FFT_COUNT;
}
#include <stdio.h>
int
iqbalance_optimize_c::work(int noutput_items,
gr_vector_const_void_star &input_items,
@ -116,8 +116,6 @@ iqbalance_optimize_c::work(int noutput_items,
this->d_phase = (0.95f * this->d_phase) + (p[1] * 0.05f);
}
printf("%d %e %e\n", this->d_period, this->d_mag, this->d_phase);
p[0] = this->d_mag;
p[1] = this->d_phase;
pmt::pmt_t msg = pmt::pmt_init_f32vector(2, p);