summaryrefslogtreecommitdiff
path: root/gr-blocks/lib/plateau_detector_fb_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
|
* 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-64/+56
|
* blocks: make plateau_detector_fb set_threshold and general_work thread safe.Michael Dickens2018-02-141-0/+5
|
* blocks: add threshold set and get to plateau detectorMichael Dickens2018-02-141-0/+10
| | | | Also add the callback to the GRC block.
* blocks: plateau_detector_fb is now a gr_block and forecastsJosh Blum2013-06-071-5/+13
| | | | | | | The detector actually could return 0 with insufficient input. The forecast always requires at least 2*d_max_len. However, forecast could be conditionalized to only require this based on the last threshold detected.
* runtime: converting runtime core to gr namespace, gnuradio include dir.Tom Rondeau2013-04-291-4/+4
|
* blocks: copied plateau_detector from analog to blocks.Tom Rondeau2013-03-181-0/+83
This will be removed from gr-analog on next, but I already removed it from any GRC categories to discourage its use.