diff options
author | Michael West <michael.west@ettus.com> | 2017-06-14 10:22:25 -0700 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2017-06-26 13:23:07 -0700 |
commit | 0b403340c3e924b642ba72679a8a1bfa23bbfd4c (patch) | |
tree | 4c3b87db1743a96cdd49162eeff671fbc6606c84 /host/lib/usrp/device3/device3_impl.hpp | |
parent | 2f7f873b7f0299ec1f8ae7c752246cb2f1608c0a (diff) | |
download | uhd-0b403340c3e924b642ba72679a8a1bfa23bbfd4c.tar.gz uhd-0b403340c3e924b642ba72679a8a1bfa23bbfd4c.tar.bz2 uhd-0b403340c3e924b642ba72679a8a1bfa23bbfd4c.zip |
X300: Implement single DMA channel for all async messages
Diffstat (limited to 'host/lib/usrp/device3/device3_impl.hpp')
-rw-r--r-- | host/lib/usrp/device3/device3_impl.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/host/lib/usrp/device3/device3_impl.hpp b/host/lib/usrp/device3/device3_impl.hpp index 22c93f25f..043379108 100644 --- a/host/lib/usrp/device3/device3_impl.hpp +++ b/host/lib/usrp/device3/device3_impl.hpp @@ -56,9 +56,9 @@ public: //! The purpose of a transport enum xport_type_t { CTRL = 0, + ASYNC_MSG, TX_DATA, - RX_DATA, - ASYNC_TX_MSG + RX_DATA }; enum xport_t {AXI, ETH, PCIE}; |