summaryrefslogtreecommitdiffstats
path: root/host/include
diff options
context:
space:
mode:
authorJosh Blum <josh@joshknows.com>2010-10-08 16:33:48 -0700
committerJosh Blum <josh@joshknows.com>2010-10-08 16:33:48 -0700
commit58e1ca09772408d5d18ee219146fe57d2045c496 (patch)
treeb08de1f8c62b1c2ea57b29285a547b1f45090f5f /host/include
parent787d89518d6dace0d8e6584e043eba99f5ff33e1 (diff)
downloaduhd-58e1ca09772408d5d18ee219146fe57d2045c496.tar.gz
uhd-58e1ca09772408d5d18ee219146fe57d2045c496.tar.bz2
uhd-58e1ca09772408d5d18ee219146fe57d2045c496.zip
usrp: comments for set subdev spec in single usrp
Diffstat (limited to 'host/include')
-rw-r--r--host/include/uhd/usrp/single_usrp.hpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/host/include/uhd/usrp/single_usrp.hpp b/host/include/uhd/usrp/single_usrp.hpp
index bc6943478..3cd263bce 100644
--- a/host/include/uhd/usrp/single_usrp.hpp
+++ b/host/include/uhd/usrp/single_usrp.hpp
@@ -116,6 +116,11 @@ public:
/*******************************************************************
* RX methods
******************************************************************/
+ /*!
+ * Set the RX subdevice specification:
+ * The subdev spec maps a physical part of a daughter-board to a channel number.
+ * Set the subdev spec before calling into any methods with a channel number.
+ */
virtual void set_rx_subdev_spec(const uhd::usrp::subdev_spec_t &spec) = 0;
virtual uhd::usrp::subdev_spec_t get_rx_subdev_spec(void) = 0;
@@ -151,6 +156,11 @@ public:
/*******************************************************************
* TX methods
******************************************************************/
+ /*!
+ * Set the TX subdevice specification:
+ * The subdev spec maps a physical part of a daughter-board to a channel number.
+ * Set the subdev spec before calling into any methods with a channel number.
+ */
virtual void set_tx_subdev_spec(const uhd::usrp::subdev_spec_t &spec) = 0;
virtual uhd::usrp::subdev_spec_t get_tx_subdev_spec(void) = 0;