summaryrefslogtreecommitdiff
path: root/gr-digital/lib/additive_scrambler_bb_impl.h
Commit message (Collapse)AuthorAgeFilesLines
* gr-digital: improved performance and capability of scramblers to 64-bit ↵Elof Wecksell2021-01-291-16/+16
| | | | | | | registers. Use __builtin_parity or volk popcnt. qa was also enhanced to detect errors. Signed-off-by: Elof Wecksell <elof@wecksell.se> Co-authored-by: Martin Braun <martin@gnuradio.org>
* modernization: `override` instead of virtual in all compilation unitsMarcus Müller2020-11-031-6/+6
|
* Add `override` for common virtual function overridesThomas Habets2020-11-031-1/+1
| | | | | | | | | | Mostly done with: ``` find -name "*_impl.h" | xargs sed -i -r '/(void forecast|int work|int general_work|bool check_topology)\(/{:back /\)/b nxt;N;b back;:nxt s/\)$|\)(;)/) override\1/g}' ``` Then I removed an incorrect `work` that this found.
* Update license header to SPDX formatdevnulling2020-01-271-13/+1
|
* Tree: clang-format without the include sortingMarcus Müller2019-08-091-28/+30
|
* digital: added missing parameter to additive scrambler GRC block; cleaned up ↵Sean Nowlan2015-05-061-1/+1
| | | | whitespace
* digital: scrambler docs now match the new functionalityMartin Braun2013-10-021-4/+3
|
* digital: scrambler gets tag supportMartin Braun2013-08-281-3/+10
|
* digital: moved include dir to gnuradio/digitalJohnathan Corgan2013-04-291-2/+2
|
* analog: moved lfsr from gr-analog to gr-digital where it is used.Tom Rondeau2012-11-101-2/+2
|
* Merge branch 'master' into nextTom Rondeau2012-10-311-2/+2
| | | | | | | | | | | | Conflicts: gr-digital/CMakeLists.txt gr-digital/include/digital_additive_scrambler_bb.h gr-digital/include/digital_descrambler_bb.h gr-digital/include/digital_scrambler_bb.h gr-digital/lib/CMakeLists.txt Conflicts were for adding dependency on gr-analog. additive_scrambler_bb_impl, descrambler_bb_impl, and scrambler_bb_impl were update to use LFSR from gr-analog.
* digital: converted scrambler code to new style.Tom Rondeau2012-08-131-1/+1
|
* digital: converted binary_slicer_fb to new style.Tom Rondeau2012-08-091-1/+1
| | | | Also removed bytes_to_syms. This had been deprecated for a while.
* digital: converting to new pimpl standard for 3.7.Tom Rondeau2012-08-091-0/+60
Structure is basically set up. Additive scrambler converted.