summaryrefslogtreecommitdiffstats
path: root/host/utils
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/utils
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/utils')
-rw-r--r--host/utils/CMakeLists.txt4
-rw-r--r--host/utils/usrp_e_load_fpga.cpp47
2 files changed, 0 insertions, 51 deletions
diff --git a/host/utils/CMakeLists.txt b/host/utils/CMakeLists.txt
index cf056e135..8d260c06c 100644
--- a/host/utils/CMakeLists.txt
+++ b/host/utils/CMakeLists.txt
@@ -19,10 +19,6 @@ ADD_EXECUTABLE(uhd_find_devices uhd_find_devices.cpp)
TARGET_LINK_LIBRARIES(uhd_find_devices uhd)
INSTALL(TARGETS uhd_find_devices RUNTIME DESTINATION ${RUNTIME_DIR})
-ADD_EXECUTABLE(usrp_e_load_fpga usrp_e_load_fpga.cpp)
-TARGET_LINK_LIBRARIES(usrp_e_load_fpga uhd)
-INSTALL(TARGETS usrp_e_load_fpga RUNTIME DESTINATION ${PKG_DATA_DIR}/utils)
-
ADD_EXECUTABLE(uhd_usrp_probe uhd_usrp_probe.cpp)
TARGET_LINK_LIBRARIES(uhd_usrp_probe uhd)
INSTALL(TARGETS uhd_usrp_probe RUNTIME DESTINATION ${RUNTIME_DIR})
diff --git a/host/utils/usrp_e_load_fpga.cpp b/host/utils/usrp_e_load_fpga.cpp
deleted file mode 100644
index 403130b53..000000000
--- a/host/utils/usrp_e_load_fpga.cpp
+++ /dev/null
@@ -1,47 +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/>.
-//
-
-#include <uhd/usrp/usrp_e.hpp>
-#include <boost/program_options.hpp>
-#include <boost/format.hpp>
-#include <iostream>
-
-namespace po = boost::program_options;
-
-int main(int argc, char *argv[]){
- po::options_description desc("Allowed options");
- desc.add_options()
- ("help", "help message")
- ("file", po::value<std::string>(), "path to fpga bin file")
- ;
-
- po::variables_map vm;
- po::store(po::parse_command_line(argc, argv, desc), vm);
- po::notify(vm);
-
- //print the help message
- if (vm.count("help") or vm.count("file") == 0){
- std::cout << boost::format("USRP1E Load FPGA %s") % desc << std::endl;
- return ~0;
- }
-
- //load the fpga
- std::string file = vm["file"].as<std::string>();
- uhd::usrp::usrp_e::load_fpga(file);
-
- return 0;
-}