diff options
author | Philip Balister <philip@opensdr.com> | 2010-11-09 18:13:25 -0800 |
---|---|---|
committer | Philip Balister <philip@opensdr.com> | 2010-11-09 18:13:25 -0800 |
commit | 7824f130bd1296c78f5b0311d1c253f0476c6cab (patch) | |
tree | 22bd18d3d8f574d295232993633c0e56543915dd /host/lib/usrp/usrp_e/usrp_e_impl.cpp | |
parent | bab641f4fdf954d6023904ca18c4bb4f6a362e47 (diff) | |
download | uhd-7824f130bd1296c78f5b0311d1c253f0476c6cab.tar.gz uhd-7824f130bd1296c78f5b0311d1c253f0476c6cab.tar.bz2 uhd-7824f130bd1296c78f5b0311d1c253f0476c6cab.zip |
usrp_e : Unload the module before loading the FPGA. Reload after the fpga is loaded.
Diffstat (limited to 'host/lib/usrp/usrp_e/usrp_e_impl.cpp')
-rw-r--r-- | host/lib/usrp/usrp_e/usrp_e_impl.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/host/lib/usrp/usrp_e/usrp_e_impl.cpp b/host/lib/usrp/usrp_e/usrp_e_impl.cpp index cd39dbb07..70cc399fb 100644 --- a/host/lib/usrp/usrp_e/usrp_e_impl.cpp +++ b/host/lib/usrp/usrp_e/usrp_e_impl.cpp @@ -111,8 +111,10 @@ static device::sptr usrp_e_make(const device_addr_t &device_addr){ //if not loaded: load the fpga image and write the hash-file if (fpga_compat_num != USRP_E_COMPAT_NUM or loaded_hash != fpga_hash){ -// usrp_e_load_fpga(usrp_e_fpga_image); -std::cout << "Here is where I load the fpga" << std::endl; + iface.reset(); + usrp_e_load_fpga(usrp_e_fpga_image); + std::cout << boost::format("re-Opening USRP-E on %s") % node << std::endl; + iface = usrp_e_iface::make(node); try{std::ofstream(hash_file_path) << fpga_hash;}catch(...){} } |