summaryrefslogtreecommitdiff
path: root/gr-digital/lib/lms_dd_equalizer_cc_impl.cc
Commit message (Collapse)AuthorAgeFilesLines
* digital: remove deprecated equalizersJosh Morman2021-04-211-120/+0
| | | | Signed-off-by: Josh Morman <jmorman@perspectalabs.com>
* fir_filter: in constructor, 'decimation' is unusedJeff Long2020-11-301-1/+1
|
* Replace all calls to `get_initial_sptr` with `make_block_sptr`Thomas Habets2020-07-301-2/+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-106/+96
|
* Addresses Defects 1046385 & 1046340: Out-of-bounds accessBen Hilburn2015-08-281-0/+6
| | | | | | | | | | | | | Both of these defects are for the second parameter of the `constellation` class' `map_to_points` function that accepts a pointer to an array of `gr_complex` values. In both of these defects, a class is calling this function and passing the address of a single `gr_complex` value in place of an array pointer. The only reason this isn't exploding with SEGFAULTs is because both of these functions happen to use the default constructor of `constellation`, which sets the loop limit in `map_to_points` to `1`. It's generally a dangerous design, but changing the function prototype seems heavy heanded, and adding additional conditionals will end up affecting the fast-path. For now, I am just documenting this oddity in the code.
* runtime: converting runtime core to gr namespace, gnuradio include dir.Tom Rondeau2013-04-291-5/+5
|
* digital: Fixes LMS and CMA equalizers.Tom Rondeau2012-09-091-8/+51
| | | | filter: updated fir_filter_* by adding a method that allows the update of a single tap in the filter in a way that propagates to all of the aligned tap vectors. Mostly to support the adaptive equalizers.
* digital: converted equalizers and fixed cma equalizer.Tom Rondeau2012-08-141-0/+94