Closed dcb314 closed 9 years ago
usrp_source.cc:105:37: warning: variable 'decimation_f' is uninitialized when used here [-Wuninitialized]
float decimation_f;
// decimation_f = (float)m_u_rx->fpga_master_clock_freq() / m_desired_sample_rate; m_decimation = (unsigned int)round(decimation_f) & ~1;
That function is dead code (it was only used for the USRP) and doesn't even get called.
Suggest delete, then.
usrp_source.cc:105:37: warning: variable 'decimation_f' is uninitialized when used here [-Wuninitialized]
// decimation_f = (float)m_u_rx->fpga_master_clock_freq() / m_desired_sample_rate; m_decimation = (unsigned int)round(decimation_f) & ~1;