summaryrefslogtreecommitdiff
path: root/gr-analog/include/gnuradio/analog/sig_source.h
Commit message (Collapse)AuthorAgeFilesLines
* Switch from boost pointers to std C++11 pointersThomas Habets2020-04-011-1/+1
| | | | | | | | | | | | | | | | | | | Most of this code is automated code changes: ``` set -e SUB="s/dummy/dummy/" for i in shared_ptr make_shared dynamic_pointer_cast weak_ptr enable_shared_from_this get_deleter; do SUB="$SUB;s/boost::$i/std::$i/g" done SUB="$SUB;s^#include <boost/shared_ptr.hpp>^#include <memory>^g" SUB="$SUB;s^namespace boost^namespace std^g" find . \( -name "*.cc" -o -name "*.h" -o -name "*.i" -o -name "*.cxx" -o -name "*.py" \) -print0 | xargs -0 sed -i "$SUB" ``` Only one manual change. In `./gr-fec/lib/fec_mtrx_impl.cc`, add `#include <algorithm>`.
* Update license header to SPDX formatdevnulling2020-01-271-13/+1
|
* Tree: clang-format without the include sortingMarcus Müller2019-08-091-67/+69
|
* gr-analog: sig source byte support mode, added qa tests #1994Eral Tuerkyilmaz2019-04-191-0/+1
|
* analog: Fix Doxygen warningsMartin Braun2018-12-121-1/+2
| | | | | - sig_source: Fix undocumented parameter 'phase' - random_uniform_source: Fix Doxygen warning regarding \TYPE
* analog: sig_source: Add phase parameterAdrian Suciu2018-11-151-1/+32
| | | | | | | Note: This does not include GRC bindings. Signed-off-by: Adrian Suciu <adrian.suciu@analog.com> Signed-off-by: Martin Braun <martin.braun@ettus.com>
* analog: replace gengen with C++ templatesAndrej Rode2018-08-251-0/+79