summaryrefslogtreecommitdiffstats
path: root/host/utils
diff options
context:
space:
mode:
authorJosh Blum <josh@joshknows.com>2010-03-30 14:12:11 +0000
committerJosh Blum <josh@joshknows.com>2010-03-30 14:12:11 +0000
commitc81a975766a8831cab1e3123af94b4fe4a09d9bc (patch)
tree7b3185f8829495a023344b162e4f77122705847d /host/utils
parentf94fa1e464c9e2a87274c991dc6461f7f4c956d8 (diff)
downloaduhd-c81a975766a8831cab1e3123af94b4fe4a09d9bc.tar.gz
uhd-c81a975766a8831cab1e3123af94b4fe4a09d9bc.tar.bz2
uhd-c81a975766a8831cab1e3123af94b4fe4a09d9bc.zip
compiling with master merge, renamed usrp1e to usrp_e
Diffstat (limited to 'host/utils')
-rw-r--r--host/utils/CMakeLists.txt5
-rw-r--r--host/utils/usrp_e_load_fpga.cpp47
2 files changed, 50 insertions, 2 deletions
diff --git a/host/utils/CMakeLists.txt b/host/utils/CMakeLists.txt
index 99e648d8a..0b1e058ef 100644
--- a/host/utils/CMakeLists.txt
+++ b/host/utils/CMakeLists.txt
@@ -19,8 +19,9 @@ 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(usrp1e_load_fpga usrp1e_load_fpga.cpp)
-TARGET_LINK_LIBRARIES(usrp1e_load_fpga uhd)
+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(usrp2_burner usrp2_burner.cpp)
TARGET_LINK_LIBRARIES(usrp2_burner uhd)
diff --git a/host/utils/usrp_e_load_fpga.cpp b/host/utils/usrp_e_load_fpga.cpp
new file mode 100644
index 000000000..403130b53
--- /dev/null
+++ b/host/utils/usrp_e_load_fpga.cpp
@@ -0,0 +1,47 @@
+//
+// 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;
+}