aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib/usrp_clock/octoclock/octoclock_image_loader.cpp
Commit message (Collapse)AuthorAgeFilesLines
* uhd: Replaced many lexical_cast with appropriate C++11 equivalentsMartin Braun2017-06-291-1/+0
|
* uhd: replace BOOST_FOREACH with C++11 range-based for loopAndrej Rode2017-02-101-1/+1
| | | | | Note: This is the first commit that uses for-range, and range-based for-loops are now usable for UHD development.
* Remove all boost:: namespace prefix for uint32_t, int32_t etc. (fixed-width ↵Martin Braun2016-11-081-20/+20
| | | | | | | | types) - Also removes all references to boost/cstdint.hpp and replaces it with stdint.h (The 'correct' replacement would be <cstdint>, but not all of our compilers support that).
* Octoclock: Fix firmware version compatibilitymichael-west2016-06-271-5/+5
|
* octoclock: bugfixes, bumped firmware compat number to 4Nicholas Corgan2016-06-171-12/+30
| | | | | | | | | * host: consistency in setting packet sequence numbers * firmware: populate packet length field when setting GPSDO cache * both: logic for dealing with mismatching compatibility numbers Reviewed-By: Michael West <michael.west@ettus.com> Reviewed-By: Martin Braun <martin.braun@ettus.com>
* ihex: Windows fixesNicholas Corgan2015-12-141-9/+8
|
* octoclock: Now uses internal ihex parserMartin Braun2015-12-141-75/+44
|
* octoclock: replaced Intel hex -> binary converterNicholas Corgan2015-08-141-17/+37
|
* image_loader: force user to specify deviceNicholas Corgan2015-08-051-13/+35
| | | | | * On utility level, force user to use --args=type=foo * In each loader, throw an error if args are ambiguous
* Added uhd::image_loader class and uhd_image_loader utilityNicholas Corgan2015-07-151-0/+340
* Single class for loading firmware/FPGA images onto devices instead of multiple utilities * Loading functions are registered for each device, corresponding to their --args="type=foo" name * Deprecation warnings added to all product-specific image loading utilities