laforge
/
openbts-osmo
Archived
1
0
Fork 0

usrp1: fix typo in rx gain setting log message

Signed-off-by: Thomas Tsou <ttsou@vt.edu>
This commit is contained in:
Thomas Tsou 2011-06-03 12:17:29 -07:00
parent e8b9db51e2
commit e8cb2708b2
2 changed files with 2 additions and 2 deletions

View File

@ -261,7 +261,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";

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";