| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
Move python/utils/ to plot_tools/ as per issue #2462.
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This commit contains all the changes done during the 2018 GSoC
"gr-modtool overhaul".
Changes include:
- Rewrite of gr-modtool based on Python Click
- Split of gr-modtool in cli and core
- Adherence to new GNU Radio 3.8 API for OOTs
- Pylint improvements
- Py3k and Py2k compatibility
This feature is merged in a squash-merge due to big refactoring
on the head and base branch and the impossibility to unclutter both.
|
|
|
|
|
|
|
| |
This removes all the gr_plot_* applications save for:
- gr_plot (time-domain)
- gr_plot_fft (FFT domain)
- gr_plot_psd (Power Spectrum Density)
|
|
|
|
|
|
|
|
|
| |
At some point when things were merged the UI definition got out of sync
with gr_plot_qt. Unfortunatly it is a pain to grab the partial commits
before the files were moved so the commit hashes are:
e4c161f16aecd82f3cfc0a8aff4e1d16afaa2791
3a27d463adaf6784b9abfe1d5f5828a0429f838b
db8bc5c7a5e701734810d0aabd8b774eda6f6839
|
| |
|
| |
|
|
|
|
|
|
|
|
|
| |
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.
|
|\
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Manual merge conflict resolution has been applied to following
conflicts:
* Typos:
* gnuradio-runtime/python/gnuradio/ctrlport/GrDataPlotter.py
* gr-blocks/python/blocks/qa_wavfile.py
* gr-filter/examples/gr_filtdes_api.py
* grc/blocks/parameter.xml
* gr-uhd/python/uhd/__init__.py
* ValueError -> RuntimeError:
* gr-blocks/python/blocks/qa_hier_block2.py
* relative Imports & other Py3k:
* gr-digital/python/digital/psk_constellations.py
* gr-digital/python/digital/qam_constellations.py
* gr-digital/python/digital/test_soft_decisions.py
* gr-digital/python/digital/gfsk.py
* SequenceCompleter:
* gr-utils/python/modtool/modtool_add.py
* gr-utils/python/modtool/modtool_rename.py
* gr-utils/python/modtool/modtool_rm.py
* Updated API on next:
* gr-blocks/grc/blocks_file_source.xml
* gr-blocks/python/blocks/qa_file_source_sink.py
* gr-qtgui/grc/qtgui_time_sink_x.xml
* GRC Py3k Updates:
* grc/core/Block.py
* grc/core/Constants.py
* grc/core/Platform.py
* grc/core/utils/odict.py
* grc/gui/Actions.py
* grc/gui/Block.py
* grc/gui/Executor.py
* grc/gui/Port.py
|
| | |
|
| | |
|
|/
|
|
|
|
|
|
|
|
|
| |
Effectively reapplies this commit by Marcus Müller:
```
Making gr_modtool start faster by avoiding to iterate over all globals
All subclasses of object have a __subclasses__ method, which gives the
subclasses. That's a lot fewer objects than what's in globals().
```
|
| |
|
| |
|
| |
|
|
|
|
|
|
| |
CPack is not used, unmaintaned, and broken.
This does not eliminate any MSVC build functionality.
|
|\ |
|
| | |
|
|\ \ |
|
| | | |
|
| | | |
|
| | | |
|
| |/ |
|
|\ \
| |/
|/| |
|
| | |
|
|\|
| |
| |
| |
| |
| | |
Conflicts:
gr-atsc/lib/qa_atsci_fake_single_viterbi.cc
gr-atsc/lib/qa_atsci_single_viterbi.cc
|
| | |
|
|/ |
|
|
|
|
|
|
|
|
|
|
| |
Prevent people from running into the problem that "import pylab" doesn't work because python tkinter is not installed.
For example on a fresh Ubuntu or Mint system it is not enough to install python-matplotlib.
However, the true error message:
"ImportError: No module named _tkinter, please install the python-tk package"
is obfuscated towards the user.
Another good option would be to not catch this import error but just show the true error message from python to the user.
|
| |
|
|
|
|
| |
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).
|
|\ |
|
| | |
|
|/
|
|
|
| |
Conflicts:
gr-utils/python/modtool/modtool_newmod.py
|
| |
|
| |
|
| |
|
|
uninstalled import works with recent changes.
|