summaryrefslogtreecommitdiff
path: root/gr-digital/lib/constellation_receiver_cb_impl.cc
Commit message (Collapse)AuthorAgeFilesLines
* Revert "Replace boost::any with std::any"Josh Morman2021-11-061-3/+5
| | | | This reverts commit ccd28dfbb1504fdc29db267acd8aa3354fe10cd2.
* Replace boost::any with std::anyMarcus Müller2021-10-281-5/+3
| | | | | | | | This is a modernization possible through C++17 Fixes #4780 Signed-off-by: Marcus Müller <mmueller@gnuradio.org>
* global: Replace stdio logging with loggerDavid Winter2021-10-211-9/+9
| | | | | | | This commit replaces many uses of std::c{out,err} and printf with the appropriate GR_LOG_* directives. Signed-off-by: David Winter <david.winter@analog.com>
* digital: constellation_receiver_cb reworkMarcus Müller2021-07-211-50/+84
| | | | | | | | Removes tag_checker Improves performance Signed-off-by: Marcus Müller <mmueller@gnuradio.org>
* Replace all calls to `get_initial_sptr` with `make_block_sptr`Thomas Habets2020-07-301-2/+2
| | | | | | | | | | | | | | 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
* msg_handler: Use lambdas in most componentsJohannes Demel2020-06-041-6/+4
| | | | | With this commit, all components except gr-qtgui use lambdas instead of `boost::bind` to register msg handlers.
* Update license header to SPDX formatdevnulling2020-01-271-13/+1
|
* gr-digital: Add more constThomas Habets2020-01-061-1/+1
|
* gr-digital: Remove needless type trickeryThomas Habets2020-01-021-2/+2
|
* clang-format: Ordering all the includesMarcus Müller2019-08-091-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | clang-format: ordering includes in gnuradio-runtime clang-format: ordering includes in gr-filter clang-format: ordering includes in gr-fft clang-format: ordering includes in gr-audio clang-format: ordering includes in gr-analog clang-format: ordering includes in gr-fec clang-format: ordering includes in gr-wavelet clang-format: ordering includes in gr-zeromq clang-format: ordering includes in gr-vocoder clang-format: ordering includes in gr-video-sdl clang-format: ordering includes in gr-trellis clang-format: ordering includes in gr-blocks clang-format: ordering includes in gr-digital clang-format: ordering includes in gr-uhd clang-format: ordering includes in gr-dtv clang-format: ordering includes in gr-channels clang-format: ordering includes in gr-qtgui clang_format.py: re-enable include reordering
* Tree: clang-format without the include sortingMarcus Müller2019-08-091-155/+167
|
* Clean-up: Remove unused private variables (Issue #1621, #1622, #1624)andriy gelman2018-04-281-2/+1
|
* math: replace M_PI and derivatives with GR_M_PI definesAndrej Rode2018-02-171-2/+1
|
* digital: addresses issue #876.Tom Rondeau2016-01-271-2/+1
| | | | | | | | | | The constellation receiver controlport interface was modeled after the costas_loop_cc block, but the inheritance of the two blocks to control_loop was different. This changes the inheritance of constellation_reciever_cb. It also fixes the name of the "loop_bw" parameter to be consistent between the set and get ControlPort interfaces.
* digital: adding a rotate_phase message for the constellation_receiver to ↵Tom Rondeau2014-06-251-4/+20
| | | | | | adjust the phase of the constellation. Addresses Issue #599.
* digital: expose set_constellation message port in GRC for ↵Tom Rondeau2014-06-241-13/+12
| | | | | | constellation_receiver. Also cleans up white spaces.
* digital: Fix CID 1043268 and 1043271Martin Braun2013-11-221-1/+0
|
* digital: adding message handler to send a new constellation to the ↵Tom Rondeau2013-10-291-29/+113
| | | | constellation_receiver as a message. Also adds ControlPort interfaces.
* runtime: converting runtime core to gr namespace, gnuradio include dir.Tom Rondeau2013-04-291-7/+6
|
* blocks: removing gri_control_loop; using gr::blocks::control_loop now.Tom Rondeau2013-03-101-1/+1
|
* Merge branch 'master' into nextTom Rondeau2012-10-151-1/+1
| | | | | | | | Fixing some conflicts due to cherry-pick on master. Conflicts: gr-digital/grc/digital_constellation_receiver_cb.xml gr-digital/lib/digital_constellation_receiver_cb.cc
* digital: Add symbol output to constellation_receiver block for debugging.Ben Reynwar2012-09-301-3/+6
|
* digital: converted over constellation and related blocks.Tom Rondeau2012-08-111-0/+130
Possibly still a work-in-progress. Need to convert over some more before QA can be run.