summaryrefslogtreecommitdiff
path: root/gr-digital/examples/example_fll.py
Commit message (Collapse)AuthorAgeFilesLines
* digital: pep8 formattingJosh Morman2021-11-241-23/+25
| | | | Signed-off-by: Josh Morman <jmorman@gnuradio.org>
* python: Remove unnecessary 'from __future__ import'Oleksandr Kravchuk2020-08-031-3/+0
| | | | | | | | | | | | | | | | All of the removed `from __future__ import` were needed in older versions of Python (mostly 2.5.x and below) but later became mandatory in most versions of Python 3 hence are not necessary anymore. More specifically, according to __future__.py[1]: - unicode_literals is part of Python since versions 2.6.0 and 3.0.0; - print_function is part of Python since versions 2.6.0 and 3.0.0; - absolute_import is part of Python since versions 2.5.0 and 3.0.0; - division is part of Python since versions 2.2.0 and 3.0.0; Get rid of those unnecessary imports to slightly clean up the codebase. [1] https://github.com/python/cpython/blob/master/Lib/__future__.py
* Update license header to SPDX formatdevnulling2020-01-271-13/+1
|
* Replace scipy/pylab where numpy/pyplot is sufficientMarcus Müller2018-11-021-17/+12
| | | | | | | | | This should reduce the number of times users are prompted to install pylab || scipy when they'd actually get away with functionality fully contained in numpy and matplotlib. This only solves the obvious cases. There's some usage of `pylab.mlab` that would need more than 20s of consideration.
* python3: update non-GRC components to use python2 or python3Douglas Anderson2017-02-261-2/+6
|
* examples: replace OptionParser by ArgumentParserJiří Pinkava2016-09-201-27/+27
|
* digital: examples will fail without some Python packages but need sys module ↵Tom Rondeau2014-03-061-7/+8
| | | | to exit properly.
* cleaning up, converting examples, etc.Tom Rondeau2013-03-171-1/+2
|
* blocks: converting references to vector source/sink, null source/sink, nop, ↵Tom Rondeau2013-03-171-7/+8
| | | | copy, head, skiphead, vector_map, and annotator blocks to use gr-blocks.
* core: cleaning up remez and firdes in gnuradio-core; now in gr-filter.Tom Rondeau2013-03-061-1/+1
|
* digital: fixed up digital blocks to make examples work again.Tom Rondeau2012-08-201-0/+20
| | | | Added GMSK loopback to test that block, too. Switched a couple over to qtgui instead of wx.
* digital: fixing up some examples to use new namespaces.Tom Rondeau2012-07-071-3/+3
|
* digital: Add a costas loop example program. Updates FLL example program to ↵Tom Rondeau2011-07-301-2/+5
| | | | include phase offset setting.
* digtial: Added an example script to show/test the behavior of the FLL.Tom Rondeau2011-07-301-0/+123