aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib/transport/chdr.cpp
Commit message (Collapse)AuthorAgeFilesLines
* endianness: Replace Boost macros with custom onesMartin Braun2019-01-211-1/+1
| | | | | | | | Boost changed the macros for endianness identification in 1.69, and the deprecation warning is a pretty noisy one during compilation. This abstracts away the Boost macro, so we have two UHD macros, UHD_BIG_ENDIAN and UHD_LITTLE_ENDIAN. They indicate big and little endian byte order.
* lib: transport: apply clang-formatBrent Stapleton2019-01-181-57/+50
| | | | | | | | | | This is a continuation of 967be2a4. $ find host/lib/transport -iname *.hpp -o -iname *.cpp |\ xargs clang-format -i -style=file Skipping host/lib/transport/nirio/ because of build errors. $ git checkout host/lib/transport/nirio
* Device3: Change packet-based flow control to byte-based flow controlMartin Braun2018-07-251-2/+5
|
* uhd: Update license headersMartin Braun2018-02-191-1/+2
| | | | | | | All copyright is now attributed to "Ettus Research, a National Instruments company". SPDX headers were also updated to latest version 3.0.
* Move all license headers to SPDX format.Martin Braun2017-12-221-12/+1
|
* Remove all boost:: namespace prefix for uint32_t, int32_t etc. (fixed-width ↵Martin Braun2016-11-081-19/+19
| | | | | | | | 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).
* Fixed master-specific warningsNicholas Corgan2015-03-271-3/+3
| | | | | * MinGW: unused parameter warning, MSVC-specific pragma * MSVC: bool narrowing
* transport: Made CHDR-related routines separate from VRTMartin Braun2014-12-031-0/+182
Our VRT routines have the option to switch, on the fly, between VRLP and CHDR. This adds new CHDR-specific (un-)packers, which can only work with CHDR.