aboutsummaryrefslogtreecommitdiffstats
path: root/Transceiver52M/Transceiver.cpp
diff options
context:
space:
mode:
authorTom Tsou <tom.tsou@ettus.com>2016-04-26 21:24:36 -0700
committerTom Tsou <tom.tsou@ettus.com>2016-04-26 21:27:20 -0700
commit5463584a9fae40b6a2a4d3beade09ff871bddd64 (patch)
tree34989855b5e038c305dd9eec9ff4c2ed5d72b7bc /Transceiver52M/Transceiver.cpp
parent047956259b468724e9c9d4b6bc436f8ee1f85a57 (diff)
transceiver: Remove clock indications from control pathttsou/master-compat
Clock indications should only be sent after the radio is started and running. Otherwise, clock indications are sent too early in the power on process causing improper function if the indications are used to signal a running radio. Signed-off-by: Tom Tsou <tom.tsou@ettus.com>
Diffstat (limited to 'Transceiver52M/Transceiver.cpp')
-rw-r--r--Transceiver52M/Transceiver.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/Transceiver52M/Transceiver.cpp b/Transceiver52M/Transceiver.cpp
index 7f13a09..ad92102 100644
--- a/Transceiver52M/Transceiver.cpp
+++ b/Transceiver52M/Transceiver.cpp
@@ -271,7 +271,6 @@ bool Transceiver::start()
TxUpperLoopAdapter, (void*) chan);
}
- writeClockInterface();
mOn = true;
return true;
}
@@ -716,9 +715,6 @@ void Transceiver::driveControl(size_t chan)
sscanf(buffer,"%3s %s",cmdcheck,command);
- if (!chan)
- writeClockInterface();
-
if (strcmp(cmdcheck,"CMD")!=0) {
LOG(WARNING) << "bogus message on control interface";
return;