Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | grc-refactor: move grc.base to grc.python.base | Sebastian Koslowski | 2016-02-17 | 1 | -482/+0 |
| | |||||
* | grc: fix fg load with virtual sink/source message connections | Sebastian Koslowski | 2016-02-05 | 1 | -85/+78 |
| | | | | | | | | | | | The problem is that wildcard ports (empty type) default to integer-based port keys. This only changes after a message domain port is connected. During FG load, port keys are verified before making connections. This failed. Now, if the port type is empty, potential message port keys are included in the verification. Bug report: http://lists.gnu.org/archive/html/discuss-gnuradio/2016-01/msg00250.html | ||||
* | grc: some clean-up | Sebastian Koslowski | 2015-12-02 | 1 | -1/+7 |
| | |||||
* | grc: refactoring Messages.py | Sebastian Koslowski | 2015-11-13 | 1 | -1/+1 |
| | |||||
* | grc: Flowgraph complexity. Shows under options block when enabled. | Seth Hitefield | 2015-09-26 | 1 | -1/+53 |
| | |||||
* | grc: sort blocks in export_data(), draw disabled blocks first (fixes #830) | Sebastian Koslowski | 2015-09-02 | 1 | -12/+10 |
| | |||||
* | grc: refactor FlowGraph.py(s) | Sebastian Koslowski | 2015-09-02 | 1 | -12/+33 |
| | |||||
* | Revert "Merge remote-tracking branch 'sdh11/complexity'" | Sebastian Koslowski | 2015-08-31 | 1 | -55/+0 |
| | | | | | This reverts commit 5e645075ebaeb1d32a0a4c7b2e99a4bed8220163, reversing changes made to 73a1a0e9ecdc8ed596271bbe2923d6d976327461. | ||||
* | Merge remote-tracking branch 'sdh11/complexity' | Johnathan Corgan | 2015-08-28 | 1 | -0/+55 |
|\ | |||||
| * | grc: super-secret | Seth Hitefield | 2015-08-28 | 1 | -0/+55 |
| | | |||||
* | | Merge remote-tracking branch 'gnuradio-wg-grc/maint_grcwg' into maint | Johnathan Corgan | 2015-08-28 | 1 | -1/+1 |
|\ \ | |/ |/| | |||||
| * | grc: fix printing empty traceback when a block is missing | Sebastian Koslowski | 2015-08-12 | 1 | -1/+1 |
| | | |||||
* | | grc: fix for block bypass where the next block is a virtual sink and moved ↵ | Seth Hitefield | 2015-08-04 | 1 | -36/+2 |
| | | | | | | | | bypass code in generator | ||||
* | | grc: Added ability to bypass blocks (Suggested by Chris Headley). | Seth Hitefield | 2015-06-11 | 1 | -6/+44 |
| | | | | | | | | | | Only for blocks that have a single source and sink of the same type. Feature can be disabled per block using the 'disable_bypass' flag in the block definition. | ||||
* | | grc: keep block/connection/param order when saving flow-graphs | Sebastian Koslowski | 2015-04-28 | 1 | -9/+9 |
|/ | |||||
* | grc: switch timestamp in grc files from modified to created | Sebastian Koslowski | 2014-10-01 | 1 | -7/+13 |
| | |||||
* | grc: start using file format tags | Sebastian Koslowski | 2014-08-26 | 1 | -4/+25 |
| | |||||
* | Merge remote-tracking branch 'gnuradio-wg-grc/master_grcwg' | Johnathan Corgan | 2014-08-26 | 1 | -7/+13 |
|\ | |||||
| * | grc: moving xml pi into nested data | Sebastian Koslowski | 2014-08-26 | 1 | -3/+8 |
| | | |||||
| * | grc: Reload marks page as modified only if an error occured during import ↵ | Seth Hitefield | 2014-08-26 | 1 | -6/+7 |
| | | | | | | | | (i.e. ports no longer exist) | ||||
* | | grc: only fix old message connections if both ends are valid | Sebastian Koslowski | 2014-08-26 | 1 | -16/+18 |
|/ | |||||
* | Removing trailing/extra whitespaces before release. | Tom Rondeau | 2014-07-07 | 1 | -27/+27 |
| | | | | 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). | ||||
* | grc: show dummy blocks when opening grc blocks | Sebastian Koslowski | 2014-03-15 | 1 | -13/+53 |
| | |||||
* | grc: fix flowgraph loading: update message ports keys | Sebastian Koslowski | 2013-12-20 | 1 | -1/+24 |
| | |||||
* | grc: Fix whitespace issue in grc to use proper spaces | Tim O'Shea | 2013-07-09 | 1 | -280/+272 |
| | | | | Remove all \t's to match the rest of GNU Radio | ||||
* | grc: add bus ports | Nicholas McCarthy | 2013-07-08 | 1 | -3/+70 |
| | | | | | Bus ports allow ganging together of block input or output ports into a single display item for connection to other bus ports. | ||||
* | docs: Modified argument formating in python docstrings in grc. | Ben Reynwar | 2012-08-14 | 1 | -17/+49 |
| | |||||
* | grc: replaced asserts in base subdirectory | Josh Blum | 2011-04-14 | 1 | -6/+14 |
| | |||||
* | removed unused import statements, thanks pyflakes | Josh Blum | 2009-12-06 | 1 | -2/+0 |
| | |||||
* | bug fix for handling loading of dynamic params | Josh Blum | 2009-09-18 | 1 | -1/+0 |
| | |||||
* | Implement a recursive validation api in the base Element class. | Josh Blum | 2009-09-05 | 1 | -20/+1 |
| | | | | | | | The rewrite and validate methods will invoke themselves on the child elements. The error messages are now a super-list of element and child error messages. As a side-effect, this cleans up code in base Block and Flowgraph class. | ||||
* | Removed the flagging api and usage from the base classes. | Josh Blum | 2009-09-02 | 1 | -3/+0 |
| | | | | Far better to flag the namespace for renewing once in the flowgraph.py | ||||
* | Switched the python classes to inherit from the base and gui classes. | Josh Blum | 2009-08-30 | 1 | -1/+1 |
| | | | | | Use only **kwargs so all contructor parameters must be passed with keys. Moved gui input forms classes from base to gui param module. | ||||
* | added rewrite methods to element to separate from validation logic | Josh Blum | 2009-08-26 | 1 | -1/+10 |
| | |||||
* | Added virtual sink and logic to clone port. | Josh Blum | 2009-08-26 | 1 | -6/+6 |
| | | | | | Tweaks to the base validation routines. Validate twice in the update until rewrite functions are implemented. | ||||
* | Merging r11186:11273 from grc branch. | jblum | 2009-06-23 | 1 | -0/+227 |
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 |