summaryrefslogtreecommitdiff
path: root/gr-fft/lib/ctrlport_probe_psd_impl.cc
Commit message (Collapse)AuthorAgeFilesLines
* Move FFT functions and blocks to templates (#3903)mormj2020-11-031-1/+1
| | | | | | | | | | | | | * fft: refactor fft classes as templates In order to reduce code duplication construct fft objects and blocks with template paramters. Separate forward and reverse as a template parameter Maintain the real fft block forward as r2c and reverse as r2c as well Co-authored-by: Andrej Rode <mail@andrejro.de>
* Replace all calls to `get_initial_sptr` with `make_block_sptr`Thomas Habets2020-07-301-1/+1
| | | | | | | | | | | | | | First batch of changes: ``` find […] -print0 | xargs -0 sed -i -r '/get_initial_sptr/{:nxt N;/;/!b nxt;s/get_initial_sptr\(\s*new ([^(]+)(.*)\)\)/make_block_sptr<\1>\2)/}' ``` Then: * Back out `sptr_magic.h` edits * Change some `friend` clauses * clang-format the whole thing * Update checksums in the pybind11 bindings files
* gr-fft: replace stderr logging by calls to GR's logging faciltiesMarcus Müller2020-04-131-2/+3
|
* Update license header to SPDX formatdevnulling2020-01-271-13/+1
|
* Use emplace_back(params) instead of push_back(type(params))Marcus Müller2019-08-221-7/+7
| | | | | | | | | | | | | | | | | | | This is C++11: you can convert std::vector<complextype> vec; vec.push_back(complextype(foo, bar, baz)); by std::vector<complextype> vec; vec.emplace_back(foo, bar, baz); which saves one unnecessary copy. This mostly happened in rpc code. The automated clang-tidy check failed miserably, so most of this was done by hand.
* Tree: clang-format without the include sortingMarcus Müller2019-08-091-118/+118
|
* Removing trailing/extra whitespaces before release.Tom Rondeau2014-07-071-5/+5
| | | | We should be more careful about letting these into the code in the future. In emacs, we can use (add-hook 'before-save-hook 'delete-trailing-whitespace).
* fft: adding ctrlport psd probe blockTim O'Shea2013-05-301-0/+174