aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2019-09-30 12:18:31 +0200
committerPau Espin Pedrol <pespin@sysmocom.de>2019-09-30 12:18:31 +0200
commit928141b7d682a80b12875ef5d288646755dba44e (patch)
treea0989b8eb1f3d1d0411fc57819b4178ade861a78
parente503c988d825e0eaf5f56ed8dd68b318b3e43c04 (diff)
radioInterfaceMulti: write frequency offset direction (rx/tx) in log line
-rw-r--r--Transceiver52M/radioInterfaceMulti.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Transceiver52M/radioInterfaceMulti.cpp b/Transceiver52M/radioInterfaceMulti.cpp
index 92e31e1..668305c 100644
--- a/Transceiver52M/radioInterfaceMulti.cpp
+++ b/Transceiver52M/radioInterfaceMulti.cpp
@@ -374,7 +374,7 @@ bool RadioInterfaceMulti::tuneTx(double freq, size_t chan)
double center = mDevice->getTxFreq();
if (!fltcmp(freq, center + (double) (chan - shift) * MCBTS_SPACING)) {
- LOG(NOTICE) << "Channel " << chan << " RF frequency offset is "
+ LOG(NOTICE) << "Channel " << chan << " RF Tx frequency offset is "
<< freq / 1e6 << " MHz";
}
@@ -393,7 +393,7 @@ bool RadioInterfaceMulti::tuneRx(double freq, size_t chan)
double center = mDevice->getRxFreq();
if (!fltcmp(freq, center + (double) (chan - shift) * MCBTS_SPACING)) {
- LOG(NOTICE) << "Channel " << chan << " RF frequency offset is "
+ LOG(NOTICE) << "Channel " << chan << " RF Rx frequency offset is "
<< freq / 1e6 << " MHz";
}