diff options
author | Nicholas Corgan <nick.corgan@ettus.com> | 2015-01-02 09:50:57 -0800 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2015-01-07 17:13:14 +0100 |
commit | 7cac8926d59ca33f2994480d9ca68cc8336a5d38 (patch) | |
tree | 3861cd75ac0414555c8edaae7a6078c4253be6e2 /host/lib/usrp/e100 | |
parent | a520a70c9644e7244b186d9e6089bb25659f6c80 (diff) | |
download | uhd-7cac8926d59ca33f2994480d9ca68cc8336a5d38.tar.gz uhd-7cac8926d59ca33f2994480d9ca68cc8336a5d38.tar.bz2 uhd-7cac8926d59ca33f2994480d9ca68cc8336a5d38.zip |
e100: fixed typo in fpga_downloader
Diffstat (limited to 'host/lib/usrp/e100')
-rw-r--r-- | host/lib/usrp/e100/fpga_downloader.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/host/lib/usrp/e100/fpga_downloader.cpp b/host/lib/usrp/e100/fpga_downloader.cpp index 7074c8299..c9d77f560 100644 --- a/host/lib/usrp/e100/fpga_downloader.cpp +++ b/host/lib/usrp/e100/fpga_downloader.cpp @@ -1,5 +1,5 @@ // -// Copyright 2010-2011 Ettus Research LLC +// Copyright 2010-2011,2014 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 @@ -223,7 +223,7 @@ static void send_file_to_fpga(const std::string &file_name, gpio &error, gpio &d bitstream.open(file_name.c_str(), std::ios::binary); if (!bitstream.is_open()) throw uhd::os_error( - "Coult not open the file: " + file_name + "Could not open the file: " + file_name ); spidev spi("/dev/spidev1.0"); |