Skip to content
This repository has been archived by the owner on Mar 21, 2020. It is now read-only.

Commit

Permalink
Remove debug output.
Browse files Browse the repository at this point in the history
  • Loading branch information
csete committed May 8, 2011
1 parent ac274c6 commit 2e5021f
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions lib/fcd_source_c.cc
Expand Up @@ -202,8 +202,6 @@ void fcd_source_c::set_dc_corr(double _dci, double _dcq)
dcinfo.dci = static_cast<signed short>(_dci*32768.0);
dcinfo.dcq = static_cast<signed short>(_dcq*32768.0);

cout << "DCI: " << dcinfo.dci << " DCQ: " << dcinfo.dcq << endl;

fcdAppSetParam(FCD_CMD_APP_SET_DC_CORR, dcinfo.auc, 4);

}
Expand All @@ -226,8 +224,6 @@ void fcd_source_c::set_iq_corr(double _gain, double _phase)
iqinfo.phase = static_cast<signed short>(_phase*32768.0);
iqinfo.gain = static_cast<signed short>(_gain*32768.0);

cout << "IQ Ph: " << iqinfo.phase << " IQ G: " << iqinfo.gain << endl;

fcdAppSetParam(FCD_CMD_APP_SET_IQ_CORR, iqinfo.auc, 4);

}

0 comments on commit 2e5021f

Please sign in to comment.