aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib
Commit message (Collapse)AuthorAgeFilesLines
...
* e100: fix FPGA filename lookup, and use model string for nameJosh Blum2011-09-031-2/+2
|
* usb: reimplement ~libusb_zero_copy_impl to avoid segfaults and indefinite ↵Josh Blum2011-09-021-13/+13
| | | | timeouts
* usrp1: reset control objects in this order to avoid race conditionsJosh Blum2011-09-021-1/+3
|
* usb: removed handler thread, do work in get buffer callsJosh Blum2011-09-021-85/+75
|
* e100: use model string to determine FPGA image to support E110Josh Blum2011-09-012-4/+14
|
* xcvr2450: fix the locking at marginal frequenciesJosh Blum2011-09-011-0/+11
|
* uhd: fill in other fields of pkg-config fileJosh Blum2011-09-011-8/+8
|
* uhd: removed WSA UDP transport implementationJosh Blum2011-09-012-311/+1
| | | | | | Once the send buffer size is increased, there appears to be no performance advantage. I would rather not have extra implementations.
* e100: changed compat numbers, and tweaksJosh Blum2011-08-313-5/+7
|
* e100: changes to support bus workJosh Blum2011-08-311-1/+1
|
* B100: don't reset send buffers (screws up TX)Nick Foster2011-08-311-1/+0
|
* Merge branch 'patch_release'Josh Blum2011-08-311-5/+9
|\
| * usrp2: made iface deconstructor safe (unlock can throw)release_003_002_003Josh Blum2011-08-311-2/+3
| |
| * usrp2: manually deconstruct tasks, fixes cleanup bugJosh Blum2011-08-291-0/+5
| |
| * usrp: preserve sub-ranges when calculating overall tune rangeJosh Blum2011-08-291-5/+9
| |
* | usrp2: made iface deconstructor safe (unlock can throw)Josh Blum2011-08-311-2/+3
| |
* | uhd: also normalise the time spec when adding/subtracting (added unit test)Josh Blum2011-08-301-4/+8
| |
* | uhd: fix for dealing with negative wrapping in time_specJosh Blum2011-08-291-17/+18
| |
* | usrp2: manually deconstruct tasks, fixes cleanup bugJosh Blum2011-08-251-0/+5
| |
* | B100: fix order-of-operations issue w/SPI & I2CNick Foster2011-08-241-2/+6
| |
* | B100: reset FPGA GPIF fifos correctly so no garbage data on startupNick Foster2011-08-242-18/+34
|/
* usrp2: initialize channel occupancy variables,Josh Blum2011-08-231-0/+1
| | | | | | | this fixes a bug when there are multiple mboard per device, the occupancy int could be uninitialized to a bad value, while subdev specs are being setup for the first time, and cause allocation issues
* usrp: use the frontend BW to clip the overall tune rangeJosh Blum2011-08-181-6/+22
|
* usrp: dboard sensors fix, populate for tvrx, and should be empty on ↵Josh Blum2011-08-184-4/+9
| | | | basics/unknown
* usrp2: bump usrp2 fw minor to 4 for upcoming patch releaseJosh Blum2011-08-151-1/+1
|
* usrp2: always resize socket send buffer to size of SRAM (we will never ↵Josh Blum2011-08-111-4/+3
| | | | commit more)
* SBX: fix typo in freq rangeNick Foster2011-08-111-1/+1
|
* gps_ctrl: make GPSDO parsing more robust, add retriesNick Foster2011-08-111-32/+51
|
* udp: only build WSA transport for MSVC (not supported on mingw for example)Josh Blum2011-08-111-1/+1
|
* usrp1: handle special case of no rx or no tx dspsJosh Blum2011-08-081-2/+6
|
* usrp1: fix for multi-channel, OTW channel width is always 1Josh Blum2011-08-081-2/+2
|
* GPS ctrl fixes for uncooperative Firefly devices (Bastien Auneau)Nick Foster2011-08-051-0/+7
|
* uhd: if found, require a liborc version orc-0.4 > 0.4.11Josh Blum2011-08-041-1/+1
|
* uhd: minor tweak for send_packet_handler, force zero sample send hack to ↵Josh Blum2011-08-021-1/+1
| | | | return zero
* usrp2: shutoff streaming using the stop bit (fix)Josh Blum2011-07-291-1/+1
|
* usrp2: turn that message into an exception, require at least 7.1Josh Blum2011-07-281-5/+5
|
* usrp2: adjusted mimo delay cycles for FPGA changesJosh Blum2011-07-281-1/+1
|
* usrp2: remove hw config readback, not neededJosh Blum2011-07-281-1/+1
|
* usrp: use a new cmd bit to signal stopJosh Blum2011-07-281-10/+11
|
* usrp2: created new gpio core and used in dboard ifaceJosh Blum2011-07-276-91/+173
|
* 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.
* usrp2: fix unintended change in last commitJosh Blum2011-07-261-1/+1
|
* uhd: exit task on the catch-all exceptions, and dont print anythingJosh Blum2011-07-252-5/+8
|
* uhd: fixed some warnings with gcc on macosxJosh Blum2011-07-252-2/+4
|
* e100: perfer orc if available and dont build neon intrinsic supportJosh Blum2011-07-221-41/+48
|
* uhd: replaced boost filesystem path with fs_path in property treeJosh Blum2011-07-229-58/+102
|
* uhd: added get_version_string and way to disable system info printJosh Blum2011-07-221-1/+7
|
* usrp2: workaround for older boost thread sleepJosh Blum2011-07-201-0/+2
|
* uhd: add get_tree call directly to the deviceJosh Blum2011-07-204-0/+12
| | | | | | Does away with the need for wax cast to get the tree. You can still do this but it will eventually be removed. There was some compiler issue on ubuntu 10.04 with any cast and a shared ptr to property tree.
* uspr1: shutdown thread in deconstructor (not automatically)Josh Blum2011-07-191-4/+7
|