summaryrefslogtreecommitdiff
path: root/gr-channels/lib/channel_model_impl.cc
Commit message (Collapse)AuthorAgeFilesLines
* global: remove iostream from all files not use cout|cerr|cin|clogMarcus Müller2021-06-171-1/+0
| | | | 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
* Update license header to SPDX formatdevnulling2020-01-271-13/+1
|
* Tree: clang-format without the include sortingMarcus Müller2019-08-091-164/+164
|
* renamed fractional_{resampler|interpolator} to mmse_Marcus Müller2017-08-181-1/+1
|
* Removing trailing/extra whitespaces before release.Tom Rondeau2014-07-071-2/+2
| | | | We should be more careful about letting these into the code in the future. In emacs, we can use (add-hook 'before-save-hook 'delete-trailing-whitespace).
* channels: Added option to block tags from propagatingMartin Braun2013-10-271-3/+11
|
* channels: use fractional_resampler instead of fractional_interpolator.Tom Rondeau2013-05-231-3/+3
|
* runtime: converting runtime core to gr namespace, gnuradio include dir.Tom Rondeau2013-04-291-4/+4
|
* ctrlport: made display type in ControlPort setup field into an options mask.Tom Rondeau2013-02-201-8/+8
| | | | | | Options are used to determine default plot type, type of plots available, initial states. qtgui: fixed enabling stem plot to properly check the menu option.
* ctrlport: adding display type for stripchart as opposed to timeseries.Tom Rondeau2013-02-171-4/+4
| | | | Stripcharts add data to the back of what's plotted; time series plots just plot the vector given. All single-value RPC vars have been converted to use stripchart mode.
* Merge branch 'master' into nextTom Rondeau2013-02-061-2/+2
| | | | | | | | | | | Merges fastnoise_source from master and reorganizes it to gr-analog. Conflicts: gnuradio-core/src/lib/general/CMakeLists.txt gnuradio-core/src/lib/general/general.i gnuradio-core/src/lib/gengen/CMakeLists.txt gnuradio-core/src/lib/hier/gr_channel_model.cc gnuradio-core/src/lib/hier/gr_channel_model.h
* ctrlport: updated all blocks using controlport to use new style of setup_rpc.Tom Rondeau2013-01-231-23/+21
| | | | QA fixed and passing.
* gruel: updating all GR blocks that use PMTs to use new naming.Tom Rondeau2012-12-211-3/+3
|
* ctrlport: cleaning up contorlport builds.Tom Rondeau2012-12-041-2/+2
| | | | I was getting confused with where ENABLE_GR_CTRLPORT was used, so this uses that in cmake and GR_CTRLPORT for the C++ and Swig files.
* ctrlport: fixing up controlport integration into gnuradio-core for merge ↵Tom Rondeau2012-12-031-0/+66
| | | | with next.
* channels: switch to using gr-blocksJohnathan Corgan2012-11-101-2/+2
|
* channels: adding new component gr-channels to hold channel models.Tom Rondeau2012-11-101-0/+137
Currently, only holds our simple channel_model block.