diff options
author | Josh Blum <josh@joshknows.com> | 2011-07-22 10:21:20 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2011-07-22 10:21:20 -0700 |
commit | d266ad32aa8e754c88cd92d477a6f17f1b8df032 (patch) | |
tree | f06021757f3ad5816c2e7ad08494bbaaea6387f3 /host/include | |
parent | e03f7c7316c0fd5d6f522f6013d552a0185faa0f (diff) | |
download | uhd-d266ad32aa8e754c88cd92d477a6f17f1b8df032.tar.gz uhd-d266ad32aa8e754c88cd92d477a6f17f1b8df032.tar.bz2 uhd-d266ad32aa8e754c88cd92d477a6f17f1b8df032.zip |
usrp: update multi usrp header to use complete subdev specs
Diffstat (limited to 'host/include')
-rw-r--r-- | host/include/uhd/usrp/multi_usrp.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/host/include/uhd/usrp/multi_usrp.hpp b/host/include/uhd/usrp/multi_usrp.hpp index b161d1278..00d5dfe7c 100644 --- a/host/include/uhd/usrp/multi_usrp.hpp +++ b/host/include/uhd/usrp/multi_usrp.hpp @@ -69,13 +69,13 @@ namespace uhd{ namespace usrp{ * multi_usrp::sptr dev = multi_usrp::make(dev_addr); * * //set the board on 10.2 to use the A RX subdevice (RX channel 0) - * dev->set_rx_subdev_spec(":A", 0); + * dev->set_rx_subdev_spec("A:A", 0); * * //set the board on 10.3 to use the B RX subdevice (RX channel 1) - * dev->set_rx_subdev_spec(":B", 1); + * dev->set_rx_subdev_spec("A:B", 1); * * //set both boards to use the AB TX subdevice (TX channels 0 and 1) - * dev->set_tx_subdev_spec(":AB", multi_usrp::ALL_MBOARDS); + * dev->set_tx_subdev_spec("A:AB", multi_usrp::ALL_MBOARDS); * * //now that all the channels are mapped, continue with configuration... * |