summaryrefslogtreecommitdiff
path: root/gr-audio/examples/python
Commit message (Collapse)AuthorAgeFilesLines
* audio: pep8 formattingJosh Morman2021-11-2410-52/+66
| | | | Signed-off-by: Josh Morman <jmorman@gnuradio.org>
* Remove gru.daemonize and dial_tone_daemon exampleClayton Smith2020-10-302-47/+0
| | | | | | | These were added in GNU Radio 3.1.3, but a Google search finds no mention of gru.daemonize outside of the changelog. Modern Python programs could use the python-daemon library, which implements the daemon specification of PEP 3143.
* Fix examples that use wavfile_sinkClayton Smith2020-10-301-1/+2
| | | | | The recent libsndfile transition changed the API of the wavfile_sink block, so the two examples that use it need to be updated.
* Remove gcd, lcm, and log2 from gru moduleClayton Smith2020-10-291-3/+4
|
* audio: fix lcm calculationClayton Smith2020-10-201-2/+2
|
* python: Remove unnecessary 'from __future__ import'Oleksandr Kravchuk2020-08-0311-15/+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-2712-156/+12
|
* Convert tabs to spaces and fix syntax errors.Clayton Smith2018-10-041-6/+6
|
* python3: update non-GRC components to use python2 or python3Douglas Anderson2017-02-2611-10/+25
|
* examples: replace OptionParser by ArgumentParserJiří Pinkava2016-09-209-140/+107
|
* examples: replace OptionParser by ArgumentParserJiří Pinkava2016-09-172-27/+21
|
* wxgui: removedJohnathan Corgan2016-09-082-139/+0
|
* cmake: nuke cpack from existenceJohnathan Corgan2016-08-031-1/+0
| | | | | | CPack is not used, unmaintaned, and broken. This does not eliminate any MSVC build functionality.
* cleaning up, converting examples, etc.Tom Rondeau2013-03-172-2/+3
|
* blocks: converting references to vector source/sink, null source/sink, nop, ↵Tom Rondeau2013-03-173-7/+7
| | | | copy, head, skiphead, vector_map, and annotator blocks to use gr-blocks.
* blocks: removing file_sink/source file_descriptor_sink/source form core and ↵Tom Rondeau2013-03-102-2/+4
| | | | moved all refs to gr-blocks.
* blocks: removing tagged file sink, wavfile source/sink/base from core; now ↵Tom Rondeau2013-03-091-1/+2
| | | | in gr-blocks.
* blocks: removes blocks moved to gr-blocks from gnuradio-core.Tom Rondeau2012-12-212-3/+10
| | | | Also fixes up some other missing moves.
* analog: removing gr-analog as a required dependency when not actually necessary.Tom Rondeau2012-11-066-5/+35
| | | | Examples that use gr-analog test for it first.
* analog: Removing reference to gr.sig_source_X and gr.noise_source_X where ↵Tom Rondeau2012-11-066-39/+41
| | | | | | | | possible. Passing make and make test. Examples and apps need testing. gr-filter relies on sig_source and noise_source, so can't remove them from core.
* core: removed gr_chunks_to_symbols_XX after move to gr-digitalJohnathan Corgan2012-06-061-1/+2
|
* Removed whitespace and added dtools/bin/remove-whitespace as a tool to do ↵Tom Rondeau2012-04-1312-71/+71
| | | | | | this in the future. The sed script was provided by Moritz Fischer.
* examples: Reworked locations and installation of examples.Tom Rondeau2012-04-031-1/+1
| | | | All python and GRC examples directly associated with a top-level component are now in that examples directory. Examples are split into c++, python, and grc dirs but are all installed into $prefix/share/gnuradio/examples/<component>.
* Removed autotools, gr-waveform, some cleanupJohnathan Corgan2011-12-082-42/+0
| | | | Nick Foster owes Nick Corgan a six-pack of beer!
* gr: the CMakeLists.txt took a chill pillJosh Blum2011-10-081-1/+1
|
* gr: squashed cmakelists.txt into one commitJosh Blum2011-07-201-0/+37
|
* gnuradio-examples, gr-audio: moved audio Python and C++ examples into gr-audioJohnathan Corgan2011-07-0414-0/+884
This begins a transition of examples from a separate gnuradio-examples component into an examples directory with the component they go with. In this commit: gnuradio-examples/c++/audio/ => gr-audio/examples/c++ gnuradio-examples/python/audio => gr-audio/examples/python The system installation directory remains $PREFIX/share/gnuradio/examples/audio