diff options
author | Josh Blum <josh@joshknows.com> | 2010-02-21 12:59:41 -0800 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2010-02-21 12:59:41 -0800 |
commit | add5d32f9b0cb3cda15624fb7aef3998096ff3f6 (patch) | |
tree | e5c10c2952b173b977e5835c34ac27ece92a0b45 /host/lib/usrp/usrp.cpp | |
parent | aab51fa40769bb77af73aba69e16c9ac28e4943f (diff) | |
download | uhd-add5d32f9b0cb3cda15624fb7aef3998096ff3f6.tar.gz uhd-add5d32f9b0cb3cda15624fb7aef3998096ff3f6.tar.bz2 uhd-add5d32f9b0cb3cda15624fb7aef3998096ff3f6.zip |
Moved lib and include contents of dboard and mboard one directory up and prefixed them with dboard_ and mboard_.
And yes, the code is compiling.
Diffstat (limited to 'host/lib/usrp/usrp.cpp')
-rw-r--r-- | host/lib/usrp/usrp.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/host/lib/usrp/usrp.cpp b/host/lib/usrp/usrp.cpp index 9b1603a4a..d4bae1694 100644 --- a/host/lib/usrp/usrp.cpp +++ b/host/lib/usrp/usrp.cpp @@ -16,7 +16,7 @@ // #include <uhd/usrp/usrp.hpp> -#include <uhd/usrp/mboard/usrp2.hpp> +#include <uhd/usrp/usrp2.hpp> #include <boost/format.hpp> #include <boost/bind.hpp> #include <stdexcept> @@ -48,7 +48,7 @@ usrp::usrp(const device_addr_t &device_addr){ //TODO nothing } else if (device_addr["type"] == "udp"){ - _mboards[""] = mboard::base::sptr(new mboard::usrp2(device_addr)); + _mboards[""] = mboard_base::sptr(new usrp2(device_addr)); } } |