Hi list,
I was browsing the c++ code in gr-usrp today, and found a strange thing
in “flexrf_base.cc”, line 337 to 349 in svn10524 (included below).
flexrf_base_tx::gain_min()
{
return usrp()->pga_max();
}
float
flexrf_base_tx::gain_max()
{
return usrp()->pga_max();
}
==================
Is it just me who thinks it looks strange that both gain_min() and
gain_max() calls pga_max()? Since it looks like a typo, I felt obligated
to report…
BR
//Mattias