summaryrefslogtreecommitdiff
path: root/gr-analog/lib/squelch_base_ff_impl.h
Commit message (Collapse)AuthorAgeFilesLines
* modernization: `override` instead of virtual in all compilation unitsMarcus Müller2020-11-031-9/+9
|
* 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-29/+29
|
* analog: Power Squelch now emit tags on start/end of burstsMarcus Müller2015-04-231-0/+3
| | | | | | | | | | | | The block will emit a tag with the key pmt::intern("squelch_sob") with the value of pmt::PMT_NIL on the first item it passes, and with the key pmt::intern("squelch:eob") on the last item it passes. Added this to the `make` documentation. Also: made the GRC XML's defaults reflect the C++ default args. Also: indentation was mixed; unified the paragraphs I worked on.
* analog: update include dir to gnuradio/analogJohnathan Corgan2013-04-291-1/+1
|
* analog: adding squelch_base_ff and ctcss_squelch_ff to analog.Tom Rondeau2012-10-201-0/+65
This addresses the issues of inheriting from both gr_block and another block (squelch_base_ff, in this case).