aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Tsou <ttsou@vt.edu>2012-03-16 20:31:01 -0400
committerAlexander Chemeris <Alexander.Chemeris@gmail.com>2013-06-24 01:51:02 +0400
commitca5d35cce8e509dfaf5da9663b5afc01f6edf133 (patch)
treea32d96d68c912e5cbd83cfffa4e67ccf7ddbb2b0
parent507e6d4e12423c357c16aed25cd143e26b9d18cd (diff)
multi-arfcn, trx: remove unused attach call()
At one point an attach() call was used to connect multiple transceivers to the radio interface. The current approach is to pass the radio interface to the transceiver instances through the constructor. Remove the unused and deprecated call. Signed-off-by: Thomas Tsou <ttsou@vt.edu>
-rw-r--r--Transceiver52M/radioInterface.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/Transceiver52M/radioInterface.h b/Transceiver52M/radioInterface.h
index 5dbca13..dde1414 100644
--- a/Transceiver52M/radioInterface.h
+++ b/Transceiver52M/radioInterface.h
@@ -94,6 +94,7 @@ public:
/** start the interface */
bool start();
+
bool started() { return mOn; };
/** shutdown interface */
@@ -115,9 +116,6 @@ public:
/** check for underrun, resets underrun value */
bool isUnderrun();
- /** attach an existing USRP to this interface */
- void attach(RadioDevice *wRadio, int wRadioOversampling);
-
/** return the receive FIFO */
VectorFIFO* receiveFIFO(int num) { return &mReceiveFIFO[num];}