usrp1: fix typo in rx gain setting log message

Signed-off-by: Thomas Tsou <ttsou@vt.edu>

git-svn-id: http://wush.net/svn/range/software/public/openbts/trunk@2657 19bc5d8c-e614-43d4-8b26-e1612bc8e597
This commit is contained in:
kurtis.heimerl 2011-11-26 03:17:57 +00:00
parent 6cb348b9a1
commit c3c7c3e23d
1 changed files with 1 additions and 1 deletions

View File

@ -275,7 +275,7 @@ double USRPDevice::setRxGain(double dB) {
if (dB > maxRxGain()) dB = maxRxGain();
if (dB < minRxGain()) dB = minRxGain();
LOG(NOTICE) << "Setting TX gain to " << dB << " dB.";
LOG(NOTICE) << "Setting RX gain to " << dB << " dB.";
if (!m_dbRx->set_gain(dB))
LOG(ERROR) << "Error setting RX gain";