summaryrefslogtreecommitdiff
path: root/gr-blocks/lib/keep_m_in_n_impl.cc
Commit message (Collapse)AuthorAgeFilesLines
* 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
* Update license header to SPDX formatdevnulling2020-01-271-13/+1
|
* Tree: clang-format without the include sortingMarcus Müller2019-08-091-83/+76
|
* Allow the full range of offsets.Clayton Smith2018-11-021-5/+16
|
* Convert set_relative_rate(double) to the new integer or receiprocal callAndy Walls2018-08-231-3/+3
| | | | | | | | This is a mass conversion of existing set_relative_rate(double) calls to either the set_relative_rate(uint64_t, uint64_t) or set_inverse_relative_rate(double) calls, where ever easily possible and appropriate, to improve tag propagation precision for fixed relative rates.
* blocks: Keep M in N: tabs to spaces, clarify docs.Felix Wunsch2018-03-021-14/+14
|
* blocks: fixed relative rate in keep_m_in_n. It's m-in-n, not n-in-m.Tom Rondeau2014-10-011-3/+3
|
* blocks: fixed up keem_m_in_n to handle relative rate and correct number of ↵Tom Rondeau2014-09-251-3/+25
| | | | | | items in calls to work. Original patch from Zhe Feng on mailing list.
* blocks: convert asserts to throwing runtime errors in keep_m_in_n ctor.Tom Rondeau2014-09-251-8/+23
|
* Removing trailing/extra whitespaces before release.Tom Rondeau2014-07-071-4/+4
| | | | 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).
* runtime: converting runtime core to gr namespace, gnuradio include dir.Tom Rondeau2013-04-291-4/+4
|
* blocks: fix initializer order warningJohnathan Corgan2012-11-261-2/+2
|
* blocks: added gr::blocks::keep_m_in_nJohnathan Corgan2012-07-191-0/+87