diff options
author | Nick Foster <nick@nerdnetworks.org> | 2010-07-26 16:33:17 -0700 |
---|---|---|
committer | Nick Foster <nick@nerdnetworks.org> | 2010-07-26 16:33:17 -0700 |
commit | d8f3980e45458cf68c8efaa029e492a1b8d08354 (patch) | |
tree | cf6a19cf89117483ffc3dd4901d303d2398a205f /host/lib/usrp/usrp2/usrp2_iface.cpp | |
parent | 7aec87d83f9aea23e7e9c71cdfe26aab6105f43c (diff) | |
download | uhd-d8f3980e45458cf68c8efaa029e492a1b8d08354.tar.gz uhd-d8f3980e45458cf68c8efaa029e492a1b8d08354.tar.bz2 uhd-d8f3980e45458cf68c8efaa029e492a1b8d08354.zip |
Host-side changes to work with the USRP2+.
Change summary:
Added clock register selection between USRP2/USRP2+
Added memory map selection between USRP2/USRP2+
Added ADS62P44 support for USRP2+
Diffstat (limited to 'host/lib/usrp/usrp2/usrp2_iface.cpp')
-rw-r--r-- | host/lib/usrp/usrp2/usrp2_iface.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/host/lib/usrp/usrp2/usrp2_iface.cpp b/host/lib/usrp/usrp2/usrp2_iface.cpp index a21157d76..17ba75d85 100644 --- a/host/lib/usrp/usrp2/usrp2_iface.cpp +++ b/host/lib/usrp/usrp2/usrp2_iface.cpp @@ -193,6 +193,19 @@ public: throw std::runtime_error("usrp2 no control response"); } + /*********************************************************************** + * Get/set hardware revision + **********************************************************************/ + void set_hw_rev(int rev) { + hw_rev = rev; + regs = usrp2_get_regs(rev); //might be a better place to do this + } + + int get_hw_rev(void) { + return hw_rev; + } + + private: //this lovely lady makes it all possible udp_simple::sptr _ctrl_transport; |