aboutsummaryrefslogtreecommitdiffstats
path: root/Transceiver52M/radioDevice.h
diff options
context:
space:
mode:
Diffstat (limited to 'Transceiver52M/radioDevice.h')
-rw-r--r--Transceiver52M/radioDevice.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Transceiver52M/radioDevice.h b/Transceiver52M/radioDevice.h
index 006e663..754bdbe 100644
--- a/Transceiver52M/radioDevice.h
+++ b/Transceiver52M/radioDevice.h
@@ -29,7 +29,7 @@ class RadioDevice {
public:
/* Available transport bus types */
- enum busType { USB, NET };
+ enum TxWindowType { TX_WINDOW_USRP1, TX_WINDOW_FIXED };
static RadioDevice *make(double desiredSampleRate, bool skipRx = false);
@@ -42,8 +42,8 @@ class RadioDevice {
/** Stop the USRP */
virtual bool stop()=0;
- /** Get the bus type */
- virtual enum busType getBus()=0;
+ /** Get the Tx window type */
+ virtual enum TxWindowType getWindowType()=0;
/** Enable thread priority */
virtual void setPriority()=0;