summaryrefslogtreecommitdiff
path: root/gr-wxgui
AgeCommit message (Collapse)Author
2009-10-29Consolidated termsink into one classJohnathan Corgan
2009-10-29Basic terminal window that takes raw text on input msgq and appends itJohnathan Corgan
Works, but needs "--line-buffered" mode for GR buffering between blocks
2009-10-29Add placeholder panel for console, use old style window sizeJohnathan Corgan
2009-10-29Created skeleton wxgui term window componentJohnathan Corgan
2009-10-29Merge branch 'flattopwindow' of http://gnuradio.org/git/jblumJohnathan Corgan
Merge-fix: Remove debugging print Merge-fix: Update copyrights * 'flattopwindow' of http://gnuradio.org/git/jblum: Added window option to wxgui fft and waterfall sink. redid cos windows, added flattop and nuttall_cfd
2009-10-28Added window option to wxgui fft and waterfall sink.Josh Blum
Added rectangular window function to window.py. Average stays hidden in waterfall, fft, and numbersink wrappers (only avg_alpha shows/hides). Fixed options in waterfall wrapper to model after fft and numbersink average params.
2009-10-21Merge branch 'vrt' of http://gnuradio.org/git/jblumJohnathan Corgan
Merge fix: added GRUEL_INCLUDES to vrt Makefile Merge fix: added missing include in gr-vrt * 'vrt' of http://gnuradio.org/git/jblum: query the model number from the host fix so all handlers get called on event simplfied the code while i was looking at it added access methods for gps stuff added access methods and parsing for caldiv if context use existing utility method reading the lo back and storing it use the new htonll and vrt types to send cal and lo freqs checking for if context packets and setting up the payload pointer and size Reading 64 bit freq out of chunk of context packet. copied over vrt context and type headers, updated bits.h as well Dump IF-Context packets in hex. use gruel/inet.h instead of arap/inet.h fix white space made rxdspno a parameter for: start/stop streaming, and quadradio32fc
2009-10-18added v offset option to scopeJosh Blum
2009-10-15Merge commit '25a8' from git@gnuradio.org:jblumJohnathan Corgan
* commit '25a8': use clean numbers for waterfall ref and range tweaks to scope autoscaling registered key to hide/show control panel in wxgui windows Added window size param to all wxgui wrappers. add canonical options for copy enable param
2009-10-14fix so all handlers get called on eventJosh Blum
2009-10-12fix so all handlers get called on eventJosh Blum
2009-10-12Merge commit '38d5389f3054164a2f04d6e4e8fe381aa5ee03fc' into vrtJosh Blum
2009-10-09use clean numbers for waterfall ref and rangeJosh Blum
2009-10-09tweaks to scope autoscalingJosh Blum
2009-10-09registered key to hide/show control panel in wxgui windowsJosh Blum
2009-10-08using gr copy in the wxgui connect, added gr copy to grc xmlJosh Blum
2009-10-08point label transpareny, horizontal offset, and toggle on/off capabilityJosh Blum
2009-10-07simplify some paramsJosh Blum
2009-10-07moved the wxgui connect helper functions into the wrapper classJosh Blum
2009-10-07making use of update ui eventJosh Blum
2009-10-07setup special wxgui connect on sinks, needs testingJosh Blum
2009-10-07working special connect for fftsinkJosh Blum
2009-10-06work on a special connect function that registers a callbackJosh Blum
2009-10-06added bind to visible event function to callback when visibility changes ↵Josh Blum
within tabs
2009-09-29added access methods for gps stuffJosh Blum
2009-09-14fixed bool converter in forms to work with non bool optionsJosh Blum
2009-09-09set text box bg color on changeJosh Blum
2009-09-09Round the slider's value, but not the internal representation.Josh Blum
Now, the slider can operate on any step size without killing the precision for other forms.
2009-09-04Merge branch 'grc' from http://gnuradio.org/git/jblum.git into masterJohnathan Corgan
we dont use test() -> remove it Made the window for the pass band filters integers (take firdes.WIN_XXX). Evaluation fix in param.to_code(). Removed the flagging api and usage from the base classes. added ref scale param to fft and waterfall Switched the python classes to inherit from the base and gui classes. port and param types from an overloaded method todo Replaced TYPES in Port and Param with types parameter. made is_virtual_xxx a block level function, used by port and param classes added stream id type and checking in evaluate avoid loops Recursive resolution of virtual sources. added virtual source and added stream ids, logic to clone in port added rewrite methods to element to separate from validation logic Added virtual sink and logic to clone port. removed repurposing of pads Work on command line options for generated code. renamed the colors dialog to types use pkgpythondir ...
2009-09-02waterfall and fft use a common autoscale functionJosh Blum
2009-09-02Fix so that the waterfall texture is initialized with a buffer of the same size.Josh Blum
If the fft size was a non power of two, the buffer would be a different size. This would cause a segfault. Particularly because fft_window was throwing out a bin.
2009-08-31Modified log power fft block so ref scale is peak to peak.Josh Blum
Tweaked fft sink autoscale routine to come up with better numbers. Modified scope sink ac couple block to use constant tap. The previous tap calculation would cause failure for very small sample rates.
2009-08-28Recursive resolution of virtual sources.Josh Blum
Flow graph generation code working. Also, mod to fft window to use clean/nice Db/div.
2009-08-22automatic store for empty traces on enableJosh Blum
2009-08-22added traces to fft windowJosh Blum
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-07-17fixed fft reordingjblum
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@11450 221aa14e-8319-0410-a670-987f0aec2ac5
2009-07-16There is no y per div, but there is a dynamic range.jblum
Added **kwargs to nongl for backwards compadibility. Updated todo. git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@11448 221aa14e-8319-0410-a670-987f0aec2ac5
2009-07-11Implements ticket:401 and ticket:402.jcorgan
Adds several API functions to determine build constants at runtime, and a convenience command line program to display them: From C++: const std::string gr_prefix(); const std::string gr_sysconfdir(); const std::string gr_prefsdir(); const std::string gr_build_date(); const std::string gr_svn_date(); const std::string gr_svn_version(); const std::string gr_version(); From Python: gr.prefix() gr.sysconfdir() gr.prefsdir() gr.build_date() gr.svn_date() gr.svn_version() gr.version() The new binary is 'gnuradio' and installed on the path: $ gnuradio Program options: gnuradio [options]: -h [ --help ] print help message --prefix print gnuradio installation prefix --sysconfdir print gnuradio system configuration directory --prefsdir print gnuradio preferences directory --builddate print gnuradio build date (RFC2822 format) -v [ --version ] print gnuradio version --svnversion print SVN repository version (SVN format) --svndate print SVN repository date $ git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@11418 221aa14e-8319-0410-a670-987f0aec2ac5
2009-07-10Refactor msgq thread classes to use gru.msgq_runnerjcorgan
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@11407 221aa14e-8319-0410-a670-987f0aec2ac5
2009-07-06Merged r11309:11357 from grc branch.jblum
Adds notebook cabability to grc and its wxgui windows/controls. git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@11358 221aa14e-8319-0410-a670-987f0aec2ac5
2009-06-26cast choices to a list because .index method DNE in python2.5 for tuplejblum
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@11294 221aa14e-8319-0410-a670-987f0aec2ac5
2009-06-23Merging r11186:11273 from grc branch.jblum
Fixes, features, and reorganization for grc. Minor fixes and features for wxgui forms. git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@11274 221aa14e-8319-0410-a670-987f0aec2ac5
2009-06-13Defined a gr_sysconfdir in Makefile.commonjblum
Modified uses of etcdir to use gr_sysconfdir. git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@11185 221aa14e-8319-0410-a670-987f0aec2ac5
2009-06-13Merged wxgui/forms branch r11124:11183jblum
The forms module is set of wxgui forms wrapped in pubsub aware convenience classes. The forms module will be used by the wxgui window classes (fft, scope, waterfall...) The forms module will be used in grc generated flowgraphs. The forms module will be used by future gui apps (usrp siggen...). Tasks: Moved forms module into wxgui. Modified *_window classes to use the forms module. Added features to forms as required. Removed pubsub aware forms in common.py. Switched grc to use the forms module in wxgui. git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@11184 221aa14e-8319-0410-a670-987f0aec2ac5
2009-05-29removed defunct base_value parameter from numbersinkjblum
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@11162 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-05-23Change wxgui style default now so 'auto' tries for OpenGL sinks and falls ↵jcorgan
back to non-GL sinks. git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@11091 221aa14e-8319-0410-a670-987f0aec2ac5
2009-05-15Added arg to start non gl scope in xy mode.jblum
Harmless and backwards compadible. git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@11047 221aa14e-8319-0410-a670-987f0aec2ac5
2009-05-06numbersink fix for when average=True on initjblum
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10979 221aa14e-8319-0410-a670-987f0aec2ac5