aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib/include/uhdlib/rfnoc
Commit message (Collapse)AuthorAgeFilesLines
* formatting: remove vim hints in headersBrent Stapleton2019-01-166-6/+0
| | | | | Remove trailing vim hints in header files. This functionality will be replaced by clang-format.
* radio_ctrl_impl: move continuous_streaming to protected.Ryan Marlow2018-12-191-1/+1
|
* uhd: rfnoc: add async message handlerTrung Tran2018-09-143-3/+191
|
* radio_ctrl: add disable time stampTrung Tran2018-09-141-0/+2
|
* Device3: Change packet-based flow control to byte-based flow controlMartin Braun2018-07-251-1/+1
|
* Removed unecessary == operation.Vidush2018-04-301-3/+3
|
* Changed method to check for channel in _tx_streamer_active & rx_streamer_active.Vidush2018-04-301-4/+4
|
* lib: Change check_radio_config() to iterate over channels, not radios.Vidush2018-04-301-5/+8
|
* fixup! rfnoc: ctrl_iface cleanupmichael-west2018-04-301-1/+1
|
* rfnoc: ctrl_iface cleanupMartin Braun2018-03-162-44/+61
| | | | | | | | | | - ctrl_iface is now longer a wb_iface. All it can do now is send command packets, and receive responses to those. - ctrl_iface does not store command time or tick rate - wb_iface_adapter is no longer a set of functors, but a wrapper around ctrl_iface. Command times are stored once, in the block. - DMA FIFO and radio block controllers have an easier time getting access to a timed_wb_iface
* rfnoc/x300: Make sure peek32() and peek64() are called with actual addressesMartin Braun2018-03-161-4/+2
| | | | Before, we were calling peeks with the number of the readback register.
* lib: Add include guards for xports.hppMartin Braun2018-03-141-0/+5
|
* uhd: Move internal headers to uhdlib/Martin Braun2018-03-1410-0/+778
To avoid the proliferation of additional include directories and multiple ways of including project-local headers, we now default to moving all headers that are used across UHD into the uhdlib/ subdirectory. Some #include statements were also reordered as they were modified for closer compliance with the coding guidelines. Internal cpp source files should now include files like this: #include <uhdlib/rfnoc/ctrl_iface.hpp> Reviewed-by: Ashish Chaudhari <ashish.chaudhari@ettus.com>