aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib/utils
Commit message (Collapse)AuthorAgeFilesLines
* Merging USRP X300 and X310 support!!Ben Hilburn2014-02-042-0/+60
|
* Added check and handling for gain names.Michael West2014-01-301-3/+3
|
* Squashed merge of Coverity fixes.Ben Hilburn2013-11-271-2/+3
|
* b200/dtor-stall: fixed bug that stalled b200 on shutdown.Johannes Demel2013-11-191-0/+99
|
* paths: get_module_paths adds share/uhd/modules to the list of applicable pathsNicholas Corgan2013-10-301-0/+1
|
* utils: fix declaration of "env_path_sep" such that it is always initialized ↵Michael Dickens2013-10-281-10/+11
| | | | before it is used in the "get_env_paths" function, by moving it from the global scope to inside that function. This change allows UHD_STATIC_BLOCK(load_modules) to work correctly.
* uhd: work on moving binaries to lib/uhdJosh Blum2012-11-083-9/+9
|
* utils: USRP N2XX Simple Net BurnerNicholas Corgan2012-10-101-1/+1
| | | | | * More automated C++ implementation of usrp_n2xx_net_burner.py * By default, installs images from standard image install directories
* utils: UHD Image Downloader - downloads firmware/FPGA images compatible with ↵Nicholas Corgan2012-06-071-2/+16
| | | | the current host code and places them in the images directory
* uhd: added uhd::get_pkg_data_pathJosh Blum2012-06-051-4/+5
|
* uhd: used shared get_tmp_path for logging as wellJosh Blum2012-05-162-46/+31
| | | | Moved some of the log.cpp tmp paths smarts into paths as well
* windows: do not set process wide priority from thread prioJosh Blum2012-02-081-0/+4
|
* uhd: fixes that make uhd compile on freebsdJosh Blum2011-12-301-2/+2
| | | | | Fixes gcc version check in byteswap. Fixes typo in thread prio.
* uhd: manually link into pthreads hereJosh Blum2011-12-271-0/+1
|
* usrp: basically working iq cal on txJosh Blum2011-11-103-0/+80
|
* uhd: removed wax and props utilsJosh Blum2011-11-072-41/+0
|
* uhd: make spawn barrier a member of a task (see notes)Josh Blum2011-07-261-6/+8
| | | | | On OSX w/ boost 1.47, this general area of code was inconsistently barfing w/ lock error. Perhaps its a boost bug, in any case, using it this way seems to solve the problem.
* uhd: exit task on the catch-all exceptions, and dont print anythingJosh Blum2011-07-251-2/+7
|
* uhd: added tasks to simplify thread spawning use casesJosh Blum2011-07-132-0/+76
|
* uhd: tweaks to log and msg implementationJosh Blum2011-06-012-33/+30
| | | | | | The implementations now contain the string stream in each instance. This way there is not a global stringstream to lock access to. This resolves the issue of nested log calls locking condition.
* uhd: removed deprecated warning API, log+msg now in APIJosh Blum2011-05-182-88/+0
|
* uhd: init log file lock ptr to nullJosh Blum2011-05-131-0/+4
|
* uhd: work on logging and message facility initializationJosh Blum2011-05-132-67/+77
|
* Make log locking work with picky boostJason Abele2011-05-051-4/+5
|
* uhd: various tweaks to log and msg, replaced a few remaining stdioJosh Blum2011-05-042-6/+14
|
* uhd: removed more iostream stuff from usrp* implementationsJosh Blum2011-05-042-2/+9
|
* uhd: replaced warning post with calls to UHD_MSG(warning)Josh Blum2011-05-045-8/+118
| | | | | The message api can support warnings, error, and status messages. The default handler is to stdio, but the user can change this.
* uhd: added interprocess file lock to the logger fileJosh Blum2011-05-041-3/+30
|
* uhd: replaced many conditional prints with UHD_LOG usageJosh Blum2011-05-041-3/+3
|
* uhd: tweaks for logger file entriesJosh Blum2011-05-041-6/+21
|
* usrp: replaced conditional dboard debug prints w/ UHD_LOGV(often)Josh Blum2011-05-041-6/+0
|
* uhd: moved the logger into the utils subdirJosh Blum2011-05-042-0/+178
|
* uhd: removed constants.hpp.in, replaced w/ per source compile definesJosh Blum2011-04-192-1/+13
|
* uhd: use UHD_PKG_DATA_PATH environment variable to override the one in constantsJosh Blum2011-04-191-16/+11
| | | | The installer sets UHD_PKG_DATA_PATH, we can can handle transplanted builds.
* uhd: specify the UHD_PKG_DATA_PATH once (since images shipped w/ drivers)Josh Blum2011-04-141-6/+2
|
* uhd: attempt to cleanup language in thread prio warningJosh Blum2011-04-091-5/+4
|
* uhd: always link winsock2 on windows, disable pthread SCHED_RR for cygwinJosh Blum2011-04-061-0/+5
|
* uhd: update copyright headers with automated scriptJosh Blum2011-03-231-1/+1
|
* Merge branch 'boost_fs_string' into nextJosh Blum2011-03-172-4/+4
|\
| * uhd: replace file_string() with string() for deprecation reasonsJosh Blum2011-03-152-4/+4
| | | | | | | | | | | | | | | | | | Patch from moritz.fischer@student.kit.edu [1] http://www.boost.org/doc/libs/1_46_1/libs/filesystem/v3/doc/deprecated.html [2] http://www.boost.org/doc/libs/1_46_1/libs/filesystem/v3/doc/index.htm Boost 1.36 appears to have string(), so this should be safe to use.
* | uhd: switch algorithm namespace to uhdJosh Blum2011-02-241-3/+3
| |
* | uhd: replaced instanced of std::exception with the uhd exceptionsJosh Blum2011-02-245-17/+16
| |
* | uhd: renamed the assert header to assert hasJosh Blum2011-02-241-1/+1
| | | | | | | | | | | | | | | | only the assert has implementation is in this header uhd assert throw moved to the exception header updated code base includes to match
* | uhd: moved exception to top level includeJosh Blum2011-02-242-48/+0
| |
* | uhd: added a bunch of custom exceptions, not used yetJosh Blum2011-02-243-25/+48
|/
* uhd: replace header checks in cmake files with more robust compile checks ↵Josh Blum2011-02-213-23/+44
| | | | | | for features implemented different ifdefs in the cpp files
* uhd: use source properties to set flags and defs not globally, but only for ↵Josh Blum2011-02-171-4/+14
| | | | the source
* uhd: fixed maxosx bug, was resizing the transport bufferJosh Blum2011-01-261-0/+1
| | | | | | but it cant be resized on macos and I messed up the code that blocked that behavior reimplemented block in usrp2_impl, seems more correct here
* uhd: make static block safe with a try,catch,printJosh Blum2011-01-142-1/+34
|
* uhd: update copyright dates on host codeJosh Blum2011-01-132-2/+2
|