diff options
author | Martin Braun <martin.braun@ettus.com> | 2020-04-02 11:40:38 -0700 |
---|---|---|
committer | Aaron Rossetto <aaron.rossetto@ni.com> | 2020-04-07 16:29:23 -0500 |
commit | d398fe465724a3c2efb6abb1c720fc9f3a037701 (patch) | |
tree | b66113cc880f122be86aa6a47ada0c315f0de106 /host/docs | |
parent | 747eebe728b66c51b000ee471d0ca0bb8922c795 (diff) | |
download | uhd-d398fe465724a3c2efb6abb1c720fc9f3a037701.tar.gz uhd-d398fe465724a3c2efb6abb1c720fc9f3a037701.tar.bz2 uhd-d398fe465724a3c2efb6abb1c720fc9f3a037701.zip |
fixup! docs: Update Basic/LF dboard references to use new operating mode
Diffstat (limited to 'host/docs')
-rw-r--r-- | host/docs/dboards.dox | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/host/docs/dboards.dox b/host/docs/dboards.dox index e12a7daff..0ef9531ba 100644 --- a/host/docs/dboards.dox +++ b/host/docs/dboards.dox @@ -24,25 +24,25 @@ The X300 series will create subdevices 0 and 1 for each BasicRX or LFRX board. The default is to make a channel for each subdevice. That can be controlled by setting the subdev spec: -```cpp +~~~~{.cpp} auto usrp = uhd::usrp::multi_usrp::make("type=x300"); usrp->set_rx_subdev_spec("A:1"); // Only 1 channel using subdevice 1 on Radio A -``` +~~~ The antenna mode is selected for each channel using the antenna API: -```cpp +~~~~{.cpp} auto usrp = uhd::usrp::multi_usrp::make("type=x300"); usrp->set_rx_antenna("A", 0); // Disable RXB port on channel 0 -``` +~~~ On the USRP2, the N200 series, the B100 series, the E100, and the USRP1 the mode depends on the subdev spec applied: -```cpp +~~~~{.cpp} auto usrp = uhd::usrp::multi_usrp::make("type=usrp2"); usrp->set_rx_subdev_spec("A:A"); // Disable RXB port -``` +~~~ The boards have no tunable elements or programmable gains. Through the magic of aliasing, you can down-convert signals greater than the Nyquist |