diff options
author | Josh Blum <josh@joshknows.com> | 2011-06-14 19:08:26 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2011-06-14 19:08:26 -0700 |
commit | 3d771334a820cb54870cbca23eab49bb84571905 (patch) | |
tree | a3087b435b9e84730007365ac4c3d5e22198b9ce /host | |
parent | 5dfc458188538a32f95c05f860587d2c542e14c1 (diff) | |
download | uhd-3d771334a820cb54870cbca23eab49bb84571905.tar.gz uhd-3d771334a820cb54870cbca23eab49bb84571905.tar.bz2 uhd-3d771334a820cb54870cbca23eab49bb84571905.zip |
b100: added images to Makefile
Diffstat (limited to 'host')
-rw-r--r-- | host/lib/usrp/usrp_b100/b100_impl.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/host/lib/usrp/usrp_b100/b100_impl.cpp b/host/lib/usrp/usrp_b100/b100_impl.cpp index 066831a92..772da8f42 100644 --- a/host/lib/usrp/usrp_b100/b100_impl.cpp +++ b/host/lib/usrp/usrp_b100/b100_impl.cpp @@ -58,7 +58,7 @@ static device_addrs_t b100_find(const device_addr_t &hint) std::string b100_fw_image; try{ b100_fw_image = find_image_path( - hint.has_key("fw")? hint["fw"] : "usrp_b100_fw_c2.ihx" + hint.has_key("fw")? hint["fw"] : "usrp_b100_fw.ihx" ); } catch(...){ @@ -129,7 +129,7 @@ static device::sptr b100_make(const device_addr_t &device_addr){ //extract the FPGA path for the B100 std::string b100_fpga_image = find_image_path( - device_addr.has_key("fpga")? device_addr["fpga"] : "usrp_b100_fpga_c3.bin" + device_addr.has_key("fpga")? device_addr["fpga"] : "usrp_b100_fpga.bin" ); //try to match the given device address with something on the USB bus |