summaryrefslogtreecommitdiffstats
path: root/host/include
diff options
context:
space:
mode:
authorJosh Blum <josh@joshknows.com>2010-07-07 02:19:20 +0000
committerJosh Blum <josh@joshknows.com>2010-07-07 02:19:20 +0000
commit998fee6ef064f1d53a61dd0eec79276d1e85291e (patch)
tree7487985ca1a92bf1b9e89de10f490e11504cd51b /host/include
parent89a22c7dd531b1754f2401037a4a5c971139bd97 (diff)
downloaduhd-998fee6ef064f1d53a61dd0eec79276d1e85291e.tar.gz
uhd-998fee6ef064f1d53a61dd0eec79276d1e85291e.tar.bz2
uhd-998fee6ef064f1d53a61dd0eec79276d1e85291e.zip
usrp-e: removed top level header for usrp-e and fpga burner app, were not going to do it that way...
Diffstat (limited to 'host/include')
-rw-r--r--host/include/uhd/usrp/CMakeLists.txt4
-rw-r--r--host/include/uhd/usrp/usrp_e.hpp54
2 files changed, 0 insertions, 58 deletions
diff --git a/host/include/uhd/usrp/CMakeLists.txt b/host/include/uhd/usrp/CMakeLists.txt
index ff2636d8c..58aa8588a 100644
--- a/host/include/uhd/usrp/CMakeLists.txt
+++ b/host/include/uhd/usrp/CMakeLists.txt
@@ -31,10 +31,6 @@ INSTALL(FILES
dboard_iface.hpp
dboard_manager.hpp
- ### usrp headers ###
- usrp_e.hpp
- usrp2.hpp
-
### utilities ###
tune_helper.hpp
simple_usrp.hpp
diff --git a/host/include/uhd/usrp/usrp_e.hpp b/host/include/uhd/usrp/usrp_e.hpp
deleted file mode 100644
index 557058261..000000000
--- a/host/include/uhd/usrp/usrp_e.hpp
+++ /dev/null
@@ -1,54 +0,0 @@
-//
-// Copyright 2010 Ettus Research LLC
-//
-// This program is free software: you can redistribute it and/or modify
-// it under the terms of the GNU General Public License as published by
-// the Free Software Foundation, either version 3 of the License, or
-// (at your option) any later version.
-//
-// This program is distributed in the hope that it will be useful,
-// but WITHOUT ANY WARRANTY; without even the implied warranty of
-// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-// GNU General Public License for more details.
-//
-// You should have received a copy of the GNU General Public License
-// along with this program. If not, see <http://www.gnu.org/licenses/>.
-//
-
-#ifndef INCLUDED_UHD_USRP_USRP_E_HPP
-#define INCLUDED_UHD_USRP_USRP_E_HPP
-
-#include <uhd/config.hpp>
-#include <uhd/device.hpp>
-
-namespace uhd{ namespace usrp{
-
-/*!
- * The USRP-Embedded device class.
- */
-class UHD_API usrp_e : public device{
-public:
- /*!
- * Find usrp_e devices on the system via the device node.
- * \param hint a device addr with the usrp_e address filled in
- * \return a vector of device addresses for all usrp-e's found
- */
- static device_addrs_t find(const device_addr_t &hint);
-
- /*!
- * Make a usrp_e from a device address.
- * \param addr the device address
- * \return a device sptr to a new usrp_e
- */
- static device::sptr make(const device_addr_t &addr);
-
- /*!
- * Load the FPGA with an image file.
- * \param bin_file the name of the fpga image file
- */
- static void load_fpga(const std::string &bin_file);
-};
-
-}} //namespace
-
-#endif /* INCLUDED_UHD_USRP_USRP_E_HPP */