aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib/transport
Commit message (Collapse)AuthorAgeFilesLines
* fixed converter logic in convert typesJosh Blum2010-06-081-15/+16
|
* Merge branch 'wip' into workJosh Blum2010-06-084-154/+196
|\
| * Replaced convert types with generated convert types that handles more cases.Josh Blum2010-06-083-154/+194
| | | | | | | | Added unit test for generated converter.
| * Created a common usrp dsp utils to handle register word calculations.Josh Blum2010-06-072-2/+4
| | | | | | | | (also switched to boost endian define to avoid c compiler check)
* | fix to ensure 32 bit swap is called on a 64 bit machineJosh Blum2010-06-081-6/+5
|/
* Replaced the vrt pack and unpack with a pack and unpack for big endian and a ↵Josh Blum2010-06-072-30/+64
| | | | | | pack and unpack for little endian. The vrt handler code was templatized to take the relevant packer/unpacker as an argument.
* Created macros for dealing with pimpls and implemented in code.Josh Blum2010-06-021-4/+3
|
* removed some windows warningsJosh Blum2010-06-021-3/+3
|
* use select for socket timeout, works windows and linuxJosh Blum2010-06-021-10/+28
|
* use polling for socket recv, timeout socket option not portableJosh Blum2010-06-011-12/+9
|
* Implemented pirate thread, moved io impl details into io impl cpp file. ↵Josh Blum2010-06-014-59/+29
| | | | Fixed bug in bounded buffer push with pop on full.
* Merge branch 'buffer' of ettus.sourcerepo.com:ettus/uhdpriv into bufferJosh Blum2010-06-011-36/+49
|\
| * added frame count call to zero-copy iface, tweaks for udp asio implJosh Blum2010-05-291-36/+49
| |
* | Moved the packet handler state stuff into a separate header (so we dont pull ↵Josh Blum2010-06-013-36/+71
|/ | | | | | in all the includes). Use callback for getting buffers rather than zc interface pointer so its more modular.
* Made a phony zero-copy interface for those interfaces that are actual ↵Josh Blum2010-05-283-82/+158
| | | | | | copy-interfaces. Using interface in the udp asio transport.
* fix: wrong size for buffer in recvJosh Blum2010-05-281-1/+1
|
* Tweak with the udp and zero-copy transport. Eventually, the caller will hang ↵Josh Blum2010-05-272-19/+21
| | | | onto a ring of managed buffers.
* Added timeout error message to timed samples example.Josh Blum2010-05-241-3/+8
| | | | Added try catch to recv helper because vrt unpack can throw.
* mac os x card burner support and documentation notesJosh Blum2010-05-211-1/+1
|
* Fixed some bugs in the send and recv full buffer modes.Josh Blum2010-05-192-11/+12
| | | | Dealing with samples counts, metadata flags, etc..
* break recv loop on timeoutJosh Blum2010-05-191-5/+7
|
* tweaks to remove warning is msvcJosh Blum2010-05-181-0/+5
|
* Added send and recv modes to the device class and packet handler implementation.Josh Blum2010-05-181-57/+121
|
* Created config macro to force inline.Josh Blum2010-05-172-6/+8
|
* Created inline send vrt packer function that also handles fragmentation.Josh Blum2010-05-171-74/+206
|
* work on generic packet handler (got rx working)Josh Blum2010-05-171-0/+161
|
* automatic resize for small udp buffersJosh Blum2010-05-171-26/+35
|
* windows fix for setsockoptJosh Blum2010-05-171-1/+1
|
* simplification of udp asio socket stuffJosh Blum2010-05-171-38/+37
|
* memcpy data when in custom io typeJosh Blum2010-05-131-4/+10
|
* moved uhd lib cmake contents into respective subdirectoriesJosh Blum2010-05-061-0/+52
|
* Merge branch 'socket' of git@ettus.sourcerepo.com:ettus/uhdprivJosh Blum2010-04-301-18/+39
|\
| * made buffer size args part of constructorJosh Blum2010-04-301-18/+39
| |
* | added reg map for ad9862Josh Blum2010-04-291-4/+0
|/
* setting size of buffers from device argsJosh Blum2010-04-271-6/+4
|
* work on controlling the socket buffer sizes from the front end apiJosh Blum2010-04-271-21/+13
|
* prefixed the ASSERT_THROW macro with UHD for the sake of namespaceJosh Blum2010-04-261-2/+2
|
* forgot an includeJosh Blum2010-04-161-0/+1
|
* Merge branch 'rfx' of git@ettus.sourcerepo.com:ettus/uhd into ioJosh Blum2010-04-122-555/+16
|\ | | | | | | | | Conflicts: host/lib/usrp/usrp2/io_impl.cpp
| * added python+cheetah build requirement, generating vrt.cppJosh Blum2010-04-092-550/+2
| |
| * converted timespec to use nanoseconds for fractional partJosh Blum2010-04-082-39/+43
| |
* | store the mtu and hdr len stuff only in the usrp2 implJosh Blum2010-04-121-8/+4
| |
* | Added data type conversion routines to transport api.Josh Blum2010-04-122-4/+151
| |
* | Created zero copy interface/framework, made use of it in usrp2 udp transport ↵Josh Blum2010-04-121-34/+71
|/ | | | stuff.
* tweak the ifaddrs address discoveryJosh Blum2010-03-261-11/+10
|
* get interface addresses on windowsJosh Blum2010-03-261-272/+39
|
* made python app to generate vrt jump tables, seems to run faster...Josh Blum2010-03-262-56/+700
|
* Merge branch 'addrs' of git@ettus.sourcerepo.com:ettus/uhd into timingJosh Blum2010-03-263-0/+345
|\ | | | | | | | | Conflicts: host/lib/usrp/usrp2/usrp2_impl.hpp
| * added interface address discoveryJosh Blum2010-03-263-0/+345
| |
* | Overhaullllllled the way we do streaming. There is an odd bug whereJosh Blum2010-03-251-1/+1
|/ | | | | | | | | a zero length command (now, no chain) used to stop the streaming. Now it seems to do the reverse... must investigate. Made all clock configuration into enums. The strings were painful and there cant be that many variations that enums cant cover them. The enums will make more sense to developers than mystery strings.