summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2011-04-14grc: remove integrity checks, we wont need them when I'm doneJosh Blum
2011-04-13grc: stop the top block after qapp exec for qtgui generationJosh Blum
2011-04-12Merge branch 'master' of gnuradio.org:gnuradio into qtgui2Tom Rondeau
2011-04-12gr-qtgui: exposing double-click events through spectrumdisplayform and ↵Mike Cornelius
through to Python.
2011-04-12gr-qtgui: adding double-click point selector to main gui widgets.Mike Cornelius
2011-04-12gr-qtgui: fix the interface file.Mike Cornelius
2011-04-12gr-qtgui: rearranging swig directory to allow other .i files; adding a ↵Mike Cornelius
qtgui2 interface file.
2011-04-12gr-qtgui: adding new qtgui_util.h to handle plot picker machinery.Mike Cornelius
2011-04-12grc: fixing grc block for dxpsk2 demods to use the right parameters.Tom Rondeau
2011-04-12Adding GRC block for the PFB channelizer filterbank.Tom Rondeau
2011-04-12Adding GRC block for the PFB synthesis filterbank.Tom Rondeau
2011-04-12Small bug fix so M&M block asks for the right number of items.Tom Rondeau
2011-04-10Merge branch 'qtgui'Tom Rondeau
2011-04-10gr-qtgui: ignore GRC-built py file of grc_qt_example.grc.Tom Rondeau
2011-04-10gr-qtgui: fixes problem with initial axes not showing up properly.Tom Rondeau
2011-04-10gr-qtgui: exposing set_update_time to Python.Tom Rondeau
2011-04-10gr-qtgui: removed OpenGL calls; we still link against the QTOPENGL_LIBS ↵Tom Rondeau
because of some dependencies in Qwt.
2011-04-10gr-qtgui: adding a GRC example for QtGui graphs.Tom Rondeau
2011-04-10gr-qtgui: updating example apps so the wrapped instance of the qtgui is not ↵Tom Rondeau
a class member; this ensures proper cleanup on exit.
2011-04-09gr-qtgui: removing Guile-specific stuff since there is no way QtGui will ↵Tom Rondeau
work with Guile yet. Changed Python QA to complete properly.
2011-04-09grc: added int to float supportJosh Blum
2011-04-07Merge branch 'master' of gnuradio.org:gnuradioTom Rondeau
2011-04-07core: missed a line in the Makefile for int_to_float.Tom Rondeau
2011-04-07core: adding QA code for int_to_float block.Tom Rondeau
2011-04-07grc: added python checks for weird python interpretersJosh Blum
2011-04-07grc: fix for generating top block when in run to completion modeJosh Blum
2011-04-07core: adding a type converter - int -> float.Tom Rondeau
2011-04-06volk: adding missing boost library flags for alternative installs of boost libs.Tom Rondeau
2011-04-06gr-qtgui: finishing off removing references to 3D plotting in UI file.Tom Rondeau
2011-04-06gr-qtgui: removing references to 3D waterfall plot and changning QtGui API ↵Tom Rondeau
to remove bool that turns it on/off.
2011-04-06gr-qtgui: cleaning up unnecessary plotting calls.Tom Rondeau
2011-04-06gr-qtgui: don't delete the SpectrumDisplayWindow; as a QWidget, it takes ↵Tom Rondeau
care of itself when the parent is deleted.
2011-04-04gr-qtgui: missed lock call that was just deleted.Tom Rondeau
2011-04-04gr-qtgui: removing uncessary file of qtevents and objects.Tom Rondeau
2011-04-04gr-qtgui: removing unnecessary mutex and qtevent objects.Tom Rondeau
2011-04-04Merge branch 'master' into qtguiTom Rondeau
2011-04-04pfb: fixed documentation for PFB-based clock sync.Tom Rondeau
2011-04-01gr-qtgui: wip trying to figure out segfaults.Tom Rondeau
2011-04-01build: updating Makefiles for newer linker requirements.Tom Rondeau
2011-03-30build: add missing linker defines for Win32Don Ward
2011-03-30build: update config.guess and config.sub from canonical sourceJohnathan Corgan
In volk, these are now actual files instead of symlinks
2011-03-30usrp: cleanup misc usageDon Ward
2011-03-30volk: fix missing Boost flagsDon Ward
2011-03-29Merge remote branch 'jblum/wip/gr_block_pure_virtual'Johnathan Corgan
* jblum/wip/gr_block_pure_virtual: uhd: cleanup uhd usrp source/sink with virtual inheritance audio: cleanup audio source/sink with virtual inheritance runtime: changes to block headers to allow pure virtual sub-classes (interfaces)
2011-03-29Merge remote branch 'jblum/wip/throttle'Johnathan Corgan
* jblum/wip/throttle: throttle: cleanup conditional code and reimplement with boost posix time runtime: changes to block headers to allow pure virtual sub-classes (interfaces)
2011-03-28audio: added missing header to Makefile.Tom Rondeau
2011-03-28uhd: cleanup uhd usrp source/sink with virtual inheritanceJosh Blum
The uhd block implementations now inherit from sync block. And the redundant constructor in source/sink has been removed.
2011-03-28audio: cleanup audio source/sink with virtual inheritanceJosh Blum
The audio implementations now inherit from sync block (as they used to). And the redundant constructor in audio source/sink has been removed.
2011-03-28runtime: changes to block headers to allow pure virtual sub-classes (interfaces)Josh Blum
2011-03-28throttle: cleanup conditional code and reimplement with boost posix timeJosh Blum
This greatly cleans up gr_throttle and moves the implementation into the .cc file. The implementation uses boost's posix time library so it will work on all systems. Also added set_sample_rate() method and support for callback in grc.