diff options
author | Martin Braun <martin.braun@ettus.com> | 2016-04-20 09:45:08 -0700 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2016-04-20 09:45:08 -0700 |
commit | 3a835db75489aa11ff8bfc5080e1f2fe5dc101a0 (patch) | |
tree | 7a030f4668c0e78968aeb66ca829ede81b31c0dc /host | |
parent | a06ad9c753a9a301367fc505f18c4bd6e5ef7d7d (diff) | |
parent | 31d5c223ed6e0ca5569042fa1dfbcd0f18194d86 (diff) | |
download | uhd-3a835db75489aa11ff8bfc5080e1f2fe5dc101a0.tar.gz uhd-3a835db75489aa11ff8bfc5080e1f2fe5dc101a0.tar.bz2 uhd-3a835db75489aa11ff8bfc5080e1f2fe5dc101a0.zip |
Merge branch 'maint'
Diffstat (limited to 'host')
-rw-r--r-- | host/docs/install.dox | 2 | ||||
-rw-r--r-- | host/lib/usrp/e300/e300_spi.cpp | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/host/docs/install.dox b/host/docs/install.dox index a6c96b2d3..4a748df29 100644 --- a/host/docs/install.dox +++ b/host/docs/install.dox @@ -72,7 +72,7 @@ Copy and paste these commands into your terminal. This will install UHD software sudo add-apt-repository ppa:ettusresearch/uhd sudo apt-get update - sudo apt-get install uhd + sudo apt-get install libuhd-dev libuhd003 uhd-host \subsubsection install_linux_ourbins_fedora Fedora diff --git a/host/lib/usrp/e300/e300_spi.cpp b/host/lib/usrp/e300/e300_spi.cpp index 2722d7f53..74d348555 100644 --- a/host/lib/usrp/e300/e300_spi.cpp +++ b/host/lib/usrp/e300/e300_spi.cpp @@ -93,6 +93,8 @@ public: tr.rx_buf = (unsigned long) &rx[0]; tr.len = num_bits >> 3; tr.bits_per_word = _bits; + tr.tx_nbits = 1; + tr.rx_nbits = 1; tr.speed_hz = _speed; tr.delay_usecs = _delay; |