aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib/experts
Commit message (Collapse)AuthorAgeFilesLines
* cmake: Update coding style to use lowercase commandsMartin Braun2018-11-141-6/+6
| | | | | | | | | | | | | | | | | Also updates our coding style file. Ancient CMake versions required upper-case commands. Later command names became case-insensitive. Now the preferred style is lower-case. Run the following shell code (with GNU compliant sed): cmake --help-command-list | grep -v "cmake version" | while read c; do echo 's/\b'"$(echo $c | tr '[:lower:]' '[:upper:]')"'\(\s*\)(/'"$c"'\1(/g' done > convert.sed \ && git ls-files -z -- bootstrap '*.cmake' '*.cmake.in' \ '*CMakeLists.txt' | xargs -0 gsed -i -f convert.sed && rm convert.sed (Make sure the backslashes don't get mangled!)
* uhd: Move internal headers to uhdlib/Martin Braun2018-03-146-995/+2
| | | | | | | | | | | | | | | | 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>
* uhd: Update license headersMartin Braun2018-02-196-5/+11
| | | | | | | 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-226-72/+6
|
* utils: introduce new logging API and remove msg APIAndrej Rode2017-02-201-2/+2
|
* uhd: replace BOOST_FOREACH with C++11 range-based for loopAndrej Rode2017-02-102-14/+12
| | | | | Note: This is the first commit that uses for-range, and range-based for-loops are now usable for UHD development.
* TwinRX: Clarify Expert log messages on resolvesDerek Kozel2017-01-301-2/+2
|
* experts: remove delete after throwAndrej Rode2017-01-121-4/+2
|
* Remove all boost:: namespace prefix for uint32_t, int32_t etc. (fixed-width ↵Martin Braun2016-11-082-5/+6
| | | | | | | | 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).
* Experts: Always resolve all nodes in the graphDerek Kozel2016-10-261-4/+9
|
* Experts: Fix typoDerek Kozel2016-10-251-1/+1
|
* Experts: Add a printer for time_spec_tDerek Kozel2016-10-251-0/+7
|
* experts: Print values of data nodes when debuggingAshish Chaudhari2016-03-212-2/+32
|
* experts: Added additional assignment operator to data writerAshish Chaudhari2016-03-211-1/+6
|
* experts: Multiple minor fixes/enhancementsAshish Chaudhari2016-02-263-10/+31
| | | | | | | | - Fixed segfault issue for graph modification errors - Demangled node type names and added quotes to "dot" labels to allow fully qualified C++ names - add_prop_node functions initialize the property objects in the tree in addition to data nodes - Passed in resolve mutex to desired data node correctly - Added == and != operators to data accessors
* uhd: Added expert dependency tracking infrastructureAshish Chaudhari2016-02-126-0/+1550
- Code location uhd/lib/experts - expert_nodes.hpp contains all node definitions: data and worker - expert_container.hpp contains the memory manager and resolver for expert nodes - expert_factory contains the initializer and modifier for expert_container