summaryrefslogtreecommitdiff
path: root/gr-utils
AgeCommit message (Collapse)Author
2010-03-04Add command that builds a new 'out-of-tree' project.Eric Blossom
2010-02-04Fix pick_subdevice.Eric Blossom
Patch from Alexander Chemeris <alexander.chemeris@gmail.com>
2010-01-10fixed issue 387: removed uses of win.set for wx sinksJosh Blum
2009-10-29fixed issue where usrp siggen continued to transmit after program exitJosh Blum
2009-10-29modified flowgraph cleanupJosh Blum
2009-10-06Merge branch 'master' into syncTom
Conflicts: gr-utils/src/python/gr_plot_qt.py gr-utils/src/python/pyqt_plot.py gr-utils/src/python/pyqt_plot.ui
2009-10-05Adding ability to easily reload/reset fileTom
2009-09-16Merge branch 'utils' of http://gnuradio.org/git/trondeau into masterJohnathan Corgan
* 'utils' of http://gnuradio.org/git/trondeau: Fixed slider behavior when the end of the file is reached. Handling a few exceptions when no file is loaded. Can now change the size of the symbols. Also fixes some layout issues. Adding ability to change line width and style (only a handful of current styles enabled). Removing plot picker that addd nothing to the interface. Adding a Reload option (Ctrl+R) option to quickly reread the file and reset the state.
2009-09-16Fixed slider behavior when the end of the file is reached.Tom Rondeau
2009-09-16Handling a few exceptions when no file is loaded.Tom Rondeau
2009-09-09tweaked ampl slider paramsJosh Blum
2009-09-09copied usrp_siggen stuff from experimental gui into gnuradio treeJosh Blum
2009-09-08removed qr_fft.py from gr-utilsEric Blossom
2009-09-01Can now change the size of the symbols. Also fixes some layout issues.Tom Rondeau
2009-09-01Adding ability to change line width and style (only a handful of current ↵Tom Rondeau
styles enabled).
2009-09-01Removing plot picker that addd nothing to the interface.Tom Rondeau
2009-09-01Adding a Reload option (Ctrl+R) option to quickly reread the file and reset ↵Tom Rondeau
the state.
2009-08-25Merge utils from http://gnuradio.org/git/trondeau.gitJohnathan Corgan
Added files to Makefile.am for distribution. Added colorbar to spectrogram for magnitude measurement. Fixed spectrogram plotting axis. Adding a spectrogram plot. The axis need work. GR plotter tool handles end of file and files shorter than the block length. Manages window/filter types better. Disables filter types if the designing algorithm doesn't support it (no RRC or Gaussian for equiripple filters). User messages if PyQt and PyQwt are not installed (or found). Setting validators for all edit boxes. Fixing tab order. Adding display for the number of taps in the filter. Adding equiripple band reject filter to filter design app. Adding P-M version of band reject filter. Fixed documentation for optfir band pass filters. Added routine for optfir equiripple filter design code to create complex bandpass filters. Also adds this ability to the filter designer. Added design for Guassian filters. Added design for RRC filters. Added Band Notch filter Adding complex bandpass filter design (for windowed filters only). Adding plotting of group delay. Adding labels to the plots. ...
2009-08-25Added files to Makefile.am for distribution.Tom Rondeau
2009-08-25Added colorbar to spectrogram for magnitude measurement.Tom Rondeau
2009-08-25Fixed spectrogram plotting axis.Tom Rondeau
2009-08-25Adding a spectrogram plot. The axis need work.Tom Rondeau
2009-08-25GR plotter tool handles end of file and files shorter than the block length.Tom Rondeau
2009-08-25Manages window/filter types better. Disables filter types if the designing ↵Tom Rondeau
algorithm doesn't support it (no RRC or Gaussian for equiripple filters).
2009-08-25User messages if PyQt and PyQwt are not installed (or found).Tom Rondeau
2009-08-24Setting validators for all edit boxes.Tom
2009-08-24Fixing tab order.Tom
2009-08-24Adding display for the number of taps in the filter.Tom
2009-08-24Adding equiripple band reject filter to filter design app.Tom Rondeau
2009-08-24Added routine for optfir equiripple filter design code to create complex ↵Tom Rondeau
bandpass filters. Also adds this ability to the filter designer.
2009-08-24Added design for Guassian filters.Tom
2009-08-24Added design for RRC filters.Tom
2009-08-23Added Band Notch filterTom
2009-08-23Adding complex bandpass filter design (for windowed filters only).Tom
2009-08-23Adding plotting of group delay.Tom
2009-08-23Adding labels to the plots.Tom
2009-08-23Plotting phase of filter in its own tab now.Tom
2009-08-23Adding a phase and group delay plot to the GUI.Tom
2009-08-23Fixing time domain plot zoomer.Tom
2009-08-23Adding features and usability.Tom
2009-08-20Removed the LFP and HPF ui's that are now a part of the main pyqt_filter.ui ↵Tom
package.
2009-08-18Adding a graphical tool to design and analyze filters.Tom
2009-08-15Merged VRT work-in-progress from eb/vrt2 (11518:11598) into trunk.eb
Passes distcheck. git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@11600 221aa14e-8319-0410-a670-987f0aec2ac5
2009-08-14Adding a QT-based data file viewer.Tom
This is the start of an application to read in data files and display them in a useful manner.
2009-08-14Added git ignore files auto created from svn:ignore properties.git
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@11592 221aa14e-8319-0410-a670-987f0aec2ac5
2009-08-12Merging trondeau/pfb r11249:11581 into trunk. This adds a few polyphase ↵trondeau
filterbank implementations that do (integer) decimation, (integer) interpolation, arbitrary resampling, and channelizing. gnuradio-example/python/pfb includes a number of different examples of how to use these blocks. git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@11583 221aa14e-8319-0410-a670-987f0aec2ac5
2009-05-27Merged r11123:11148 from jcorgan/np into trunk.jcorgan
Adds --enable-python option to configure (defaults to yes). Using --disable-python or --enable-python=no will cause only C++ API targets to be created and installed. Several new shared libraries are now created. Where in the past, the C++ objects of the actual gnuradio blocks that were in a component were hidden inside their corresponding Python extension modules, these are now split out into a libgnuradio-foo.so library, and the _foo.so Python module is linked to that. This has been the way several top- level components have operated for some time, such as gr-audio-alsa and gr-usrp and gr-usrp2. This changeset applies that pattern to all components. C++ API users can use pkg-config to discover the cflags and libs parameters needed to include and link against these libraries. These components have not been tested: gr-comedi gr-audio-osx gr-audio-windows Passes distcheck. git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@11150 221aa14e-8319-0410-a670-987f0aec2ac5
2009-03-19Merged remainder of eb/t348 10637:10648. This adds a -N <nsamples>eb
argument to usrp_siggen.py, usrp_siggen.cc and test_usrp_standard_tx.cc. git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10650 221aa14e-8319-0410-a670-987f0aec2ac5
2009-03-14Merged r10554:10595 from michaelld/am_swig_4 into trunk. Major overhaul of ↵jcorgan
SWIG usage in build system, also fixes ticket:130. Trunk passes distcheck. git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10596 221aa14e-8319-0410-a670-987f0aec2ac5
2009-02-23Cleanup, changed ifc_name() to interface_name()jcorgan
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10477 221aa14e-8319-0410-a670-987f0aec2ac5