aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Chemeris <Alexander.Chemeris@gmail.com>2015-07-11 12:40:26 -0400
committerAlexander Chemeris <Alexander.Chemeris@gmail.com>2015-07-11 12:40:26 -0400
commitc9392773740563c038e89af01830be78e1061e39 (patch)
treec5088f2528d163006cd34597bdbd02a4f1f7a656
parent79dae630c73287c9ac07c130c9ab1d425e6c8c37 (diff)
Transceiver: Add chan number to the debug output of received bursts.
-rw-r--r--Transceiver52M/Transceiver.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/Transceiver52M/Transceiver.cpp b/Transceiver52M/Transceiver.cpp
index b88ec87..e649d46 100644
--- a/Transceiver52M/Transceiver.cpp
+++ b/Transceiver52M/Transceiver.cpp
@@ -1000,6 +1000,7 @@ void Transceiver::driveReceiveFIFO(size_t chan)
TOAint = (int) (TOA * 256.0 + 0.5); // round to closest integer
LOG(DEBUG) << std::fixed << std::right
+ << " chan: " << chan
<< " time: " << burstTime
<< " RSSI: " << std::setw(5) << std::setprecision(1) << RSSI << "dBFS/" << std::setw(6) << -dBm << "dBm"
<< " noise: " << std::setw(5) << std::setprecision(1) << noise << "dBFS/" << std::setw(6) << -(noise+rssiOffset) << "dBm"