Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | grc-refactor: clean-up grc directory | Sebastian Koslowski | 2016-02-17 | 1 | -271/+0 |
| | |||||
* | grc-refactor: move grc.base to grc.python.base | Sebastian Koslowski | 2016-02-17 | 1 | -6/+9 |
| | |||||
* | grc: clean-up Block port counters | Sebastian Koslowski | 2015-07-17 | 1 | -8/+5 |
| | |||||
* | grc: undo port type caching (fixes type controller) | Sebastian Koslowski | 2015-01-13 | 1 | -1/+0 |
| | |||||
* | grc: add multiple_sources flag to domain.dtd | Sebastian Koslowski | 2014-12-05 | 1 | -2/+0 |
| | |||||
* | grc: add gr_message domain | Sebastian Koslowski | 2014-12-05 | 1 | -1/+9 |
| | |||||
* | grc: fix port type cache for empty types | Sebastian Koslowski | 2014-11-06 | 1 | -1/+2 |
| | |||||
* | Removing trailing/extra whitespaces before release. | Tom Rondeau | 2014-07-07 | 1 | -4/+4 |
| | | | | 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: doc fixes | Sebastian Koslowski | 2013-11-29 | 1 | -12/+18 |
| | |||||
* | grc: check if stream port before overwriting key and set _key, not 'key' in dict | Bastian Bloessl | 2013-11-29 | 1 | -2/+4 |
| | |||||
* | grc: rename remove_duplicate -> remove_clone | Bastian Bloessl | 2013-11-29 | 1 | -1/+1 |
| | |||||
* | grc: make statement more explicit | Bastian Bloessl | 2013-11-29 | 1 | -2/+2 |
| | |||||
* | grc: rewrite of nports code (WIP) | Sebastian Koslowski | 2013-11-29 | 1 | -7/+41 |
| | |||||
* | grc: fixes undefined behavior in get_nports() (WIP) | Sebastian Koslowski | 2013-11-29 | 1 | -4/+4 |
| | |||||
* | allow varying number of message ports | Bastian Bloessl | 2013-11-29 | 1 | -1/+0 |
| | |||||
* | grc: Fix whitespace issue in grc to use proper spaces | Tim O'Shea | 2013-07-09 | 1 | -197/+191 |
| | | | | Remove all \t's to match the rest of GNU Radio | ||||
* | grc: add bus ports | Nicholas McCarthy | 2013-07-08 | 1 | -1/+7 |
| | | | | | Bus ports allow ganging together of block input or output ports into a single display item for connection to other bus ports. | ||||
* | Merge branch 'master' into next | Tom Rondeau | 2013-03-26 | 1 | -0/+1 |
|\ | |||||
| * | grc: fixes problem with order of defining message ports vs. data ports. | Tom Rondeau | 2013-03-26 | 1 | -0/+1 |
| | | |||||
* | | Merge branch 'master' into next | Johnathan Corgan | 2012-11-30 | 1 | -1/+1 |
|\| | |||||
| * | core: gr_blocks can now have only message ports with no general_work() | Tim O'Shea | 2012-11-30 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | * msg only blocks now get thread context * added blocking msg queue delete call * added gr_message_strobe block * added grc definitions for message_debug, message_strobe, pdu_to_tagged_stream, tagged_stream_to_pdu. * allow message fan-in connections in GRC | ||||
* | | docs: Modified argument formating in python docstrings in grc. | Ben Reynwar | 2012-08-14 | 1 | -6/+14 |
|/ | |||||
* | grc: restore virtual ports in grc | Justin R. Cutler | 2012-05-31 | 1 | -0/+4 |
| | |||||
* | grc: resolve down and up stream for empty types | Josh Blum | 2012-03-25 | 1 | -7/+50 |
| | |||||
* | grc: tweaks for colors, added 64 int, vector darken | Josh Blum | 2011-10-19 | 1 | -4/+6 |
| | |||||
* | grc: added new IO types | Josh Blum | 2011-10-12 | 1 | -17/+11 |
| | | | | | | | | | | Added all complex/real float/integer types. Used volk naming convention: fc32, etc... The port type checking now relies on IO size, therefore a short vector of length 2 can connect to a complex short, a float can connect to an int. Basically, the same size checking done in gnuradio runtime. | ||||
* | grc: replaced asserts in python subdirectory | Josh Blum | 2011-04-14 | 1 | -11/+10 |
| | |||||
* | grc: expanded nports ability to have multiple port duplicators per side | Josh Blum | 2010-06-24 | 1 | -0/+2 |
| | |||||
* | use show signal to perform initial gui update | Josh Blum | 2009-09-08 | 1 | -1/+1 |
| | |||||
* | Switched the python classes to inherit from the base and gui classes. | Josh Blum | 2009-08-30 | 1 | -1/+3 |
| | | | | | Use only **kwargs so all contructor parameters must be passed with keys. Moved gui input forms classes from base to gui param module. | ||||
* | port and param types from an overloaded method | Josh Blum | 2009-08-30 | 1 | -5/+3 |
| | |||||
* | Replaced TYPES in Port and Param with types parameter. | Josh Blum | 2009-08-29 | 1 | -4/+5 |
| | | | | | Replaced odict in options for storing options with a list. Fix virtual port check in flow graph template. | ||||
* | made is_virtual_xxx a block level function, used by port and param classes | Josh Blum | 2009-08-28 | 1 | -9/+7 |
| | |||||
* | avoid loops | Josh Blum | 2009-08-28 | 1 | -4/+13 |
| | |||||
* | Recursive resolution of virtual sources. | Josh Blum | 2009-08-28 | 1 | -15/+30 |
| | | | | | | Flow graph generation code working. Also, mod to fft window to use clean/nice Db/div. | ||||
* | added virtual source and added stream ids, logic to clone in port | Josh Blum | 2009-08-28 | 1 | -5/+15 |
| | |||||
* | added rewrite methods to element to separate from validation logic | Josh Blum | 2009-08-26 | 1 | -6/+8 |
| | |||||
* | Added virtual sink and logic to clone port. | Josh Blum | 2009-08-26 | 1 | -0/+14 |
| | | | | | Tweaks to the base validation routines. Validate twice in the update until rewrite functions are implemented. | ||||
* | Removed Source and Sink classes as Port subclasses. | Josh Blum | 2009-08-17 | 1 | -22/+12 |
| | | | | A port can be a source or a sink based on the dir parameter. | ||||
* | added validation check for msg type ports, added copy method for ports to ↵ | Josh Blum | 2009-08-15 | 1 | -6/+13 |
| | | | | cleanup nports code | ||||
* | params, sources, and sinks now stored internally as lists. The keys for said ↵ | Josh Blum | 2009-08-14 | 1 | -6/+0 |
| | | | | objects are now only stored in one place (in the object). | ||||
* | this time commit the file changes | Josh Blum | 2009-08-13 | 1 | -7/+8 |
| | |||||
* | apply diff from previous commits | Josh Blum | 2009-08-10 | 1 | -16/+17 |
| | |||||
* | Merging r11186:11273 from grc branch. | jblum | 2009-06-23 | 1 | -0/+129 |
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 |