aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib/rfnoc/nocscript
Commit message (Collapse)AuthorAgeFilesLines
* lib: rfnoc: Add some missing virtual destructorsMartin Braun2019-01-222-2/+6
|
* formatting: Apply clang-format to nocscript filesMartin Braun2019-01-228-557/+499
|
* formatting: remove vim hints in headersBrent Stapleton2019-01-164-4/+0
| | | | | Remove trailing vim hints in header files. This functionality will be replaced by clang-format.
* cmake: Update coding style to use lowercase commandsMartin Braun2018-11-141-4/+4
| | | | | | | | | | | | | | | | | 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!)
* lib: Purge use of boost::assign, except for uhd::dictMartin Braun2018-05-021-8/+7
| | | | | | | Replaced with initialization lists. Note: uhd::dict does not work with initializer lists without making changes to said data structure. This commit has no functional changes, so keeping the boost::assigns for uhd::dict.
* lib: Purge all references to boost::this_thread::sleep()Martin Braun2018-04-301-2/+3
| | | | Replace with std::this_thread::sleep_for().
* uhd: Update license headersMartin Braun2018-02-1910-9/+19
| | | | | | | 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-2210-120/+10
|
* uhd: Replaced many lexical_cast with appropriate C++11 equivalentsMartin Braun2017-06-292-10/+9
|
* Merge branch 'maint'Martin Braun2017-05-031-0/+2
|\
| * coverity: fix various minor issuesAndrej Rode2017-04-251-0/+2
| |
* | utils: introduce new logging API and remove msg APIAndrej Rode2017-02-201-13/+13
| |
* | uhd: replace BOOST_FOREACH with C++11 range-based for loopAndrej Rode2017-02-102-5/+3
|/ | | | | Note: This is the first commit that uses for-range, and range-based for-loops are now usable for UHD development.
* lib: add default ctors to structs and initialize members properlyAndrej Rode2017-01-121-1/+1
|
* nocscript: fully fix build issue on Py3kMichael Dickens2016-12-161-2/+2
|
* nocscript: Fixed build issue on Py3kMartin Braun2016-12-151-2/+2
|
* Remove all boost:: namespace prefix for uint32_t, int32_t etc. (fixed-width ↵Martin Braun2016-11-081-1/+1
| | | | | | | | 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).
* Merging RFNoC support for X310Martin Braun2016-08-0910-0/+2272