summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Removed check for pending events during mouse drag of GRC blocks on ↵Balint Seeber2013-01-181-2/+3
| | | | | | | FlowGraph canvas. This is always true on Windows with latest PyGTK and so blocks would never move with mouse movement. Disabling the check appears to have no adverse effects.
* grc: fixed problem of GRC_BLOCKS_PATH not being set in WindowsNicholas Corgan2013-01-151-3/+5
|
* wxgui: dead code removal and formatting cleanupSylvain Munaut2013-01-151-36/+31
|
* core: removed redundant test settingsJosh Blum2013-01-141-7/+0
|
* block: file_source_impl missing mutex includeJosh Blum2013-01-141-0/+1
|
* core: gr_socket_pdu missing iostreamJosh Blum2013-01-141-0/+1
|
* cmake: update revision to 3.6.3 for releasev3.6.3Johnathan Corgan2013-01-081-1/+1
|
* remove unnecessary build commandsMichael L Dickens2013-01-041-4/+0
|
* Reorder SWIG_INCLUDE_DIRSMichael L Dickens2013-01-032-3/+7
|
* FFT_INCLUDE_DIRS -> GR_FFT_INCLUDE_DIRS, and reorderMichael L Dickens2013-01-031-1/+1
|
* GrUseQt4 -> GrSetupQt4, since that's what it really does.Michael L Dickens2013-01-032-1/+1
|
* Merge branch 'master' of http://gnuradio.org/git/gnuradio into ↵Michael L Dickens2013-01-033-9/+15
|\ | | | | | | fix_build_dir_order
| * Merge branch 'master' of gnuradio.org:gnuradioTom Rondeau2013-01-022-8/+14
| |\
| | * blocks: fixed file_meta_sink/source_impl MSVC incompatibliity errorNicholas Corgan2013-01-022-8/+14
| | |
| * | docs: fixing typo.Tom Rondeau2013-01-021-1/+1
| |/
* | Tweak INCLUDE dirs such that INCLUDE_DIRECTORIES and LINK_DIRECTORIES are ↵Michael L Dickens2013-01-0144-116/+188
| | | | | | | | ordered as: internal build and source for this component, other components (internal build and source, or already installed), non-project non-system dependencies (e.g., Qt, Boost, Python), system dependencies (e.g., CoreAudio).
* | GNU Radio version of CMake's "UseQt4" script, which determines header ↵Michael L Dickens2013-01-011-0/+156
|/ | | | (INCLUDE) and library directories, but requires that the including script add use them (via INCLUDE_DIRECTORIES and LINK_DIRECTORIES)
* core: fixed some unused parameter warningsAlexandru Csete2012-12-312-11/+11
|
* Merge branch 'maint'Johnathan Corgan2012-12-291-1/+2
|\
| * cmake: removed Boost 1.52 from allowed versionsmaint-3.6.2Johnathan Corgan2012-12-291-1/+2
| | | | | | | | See https://svn.boost.org/trac/boost/ticket/7669
* | cmake: update revision to 3.6.3rc0v3.6.3rc0Johnathan Corgan2012-12-231-2/+2
| |
* | Merge branch 'maint'Johnathan Corgan2012-12-201-0/+1
|\|
| * Revert "gruel: remove erroneous include path from cmake"Nicholas Corgan2012-12-141-0/+1
| | | | | | | | This reverts commit 1294d9b540b9f68f038b18f706867d87c08be4c8.
* | Merge remote-tracking branch 'ncorgan/pdu_fix'Johnathan Corgan2012-12-206-16/+23
|\ \
| * | core: fixed pdu MSVC compatibility issuesNicholas Corgan2012-12-206-16/+23
| | |
* | | gruel: adding a 'pmt_from_complex' call (more clear than pmt_make_rectangular).Tom Rondeau2012-12-204-0/+30
| | |
* | | gruel: pmt_Xvector_elements can be used in Python to return a Python tuple.Tom Rondeau2012-12-193-31/+43
|/ /
* | Merge branch 'tagdebug2' of git://github.com/mbant/gnuradioTom Rondeau2012-12-181-2/+2
|\ \
| * | core: gr_tag_debug handles lacking srcidMartin Braun2012-12-181-2/+2
| | |
* | | docs: Restructuring main page to point to new pages describing features in GR.Tom Rondeau2012-12-182-0/+9
| | |
* | | docs: added a doxygen manual page describing PMT types and how to use them.Tom Rondeau2012-12-181-0/+348
| | |
* | | docs: Adding a page describing the message passing interface.Tom Rondeau2012-12-181-0/+266
|/ /
* | gruel: changing PMT (de)serialize of complex to make more portable ↵Tom Rondeau2012-12-171-8/+8
| | | | | | | | (apparently; for OSX).
* | docs: using full namspace for references in metadata.dox for proper linking.Tom Rondeau2012-12-171-22/+23
| |
* | blocks: fixing up QA of metadata to not rely on non-dependency components.Tom Rondeau2012-12-151-17/+22
| |
* | blocks: fixing up metadata parser.Tom Rondeau2012-12-151-3/+8
| |
* | blocks: moving file metadata sink/source to gr-blocks.Tom Rondeau2012-12-1435-1653/+1685
| |
* | gruel: Enabling serialize/deserialize for PMT vectors.Tom Rondeau2012-12-145-23/+415
| |
* | core: adding itemsize key to metadata header to allow for vectorized items.Tom Rondeau2012-12-149-45/+596
| | | | | | | | | | | | This also simplifies some code in the source since we're told exactly what the items size is and don't have to infer. Also adds an example using vector items.
* | core: Added detached header test to file metadata QA.Tom Rondeau2012-12-142-3/+83
| | | | | | | | Also adds a flush when updating the headers.
* | core: QA code to test file metadata sources and sinks.Tom Rondeau2012-12-141-0/+118
| |
* | core: When the file meta sink is closed by user, make sure the last header ↵Tom Rondeau2012-12-141-2/+2
| | | | | | | | is properly updated.
* | core: use std::string in file metadata sink (easier to work with; matches ↵Tom Rondeau2012-12-143-14/+13
| | | | | | | | source).
* | core: updated file metadata source to support detached header files.Tom Rondeau2012-12-143-27/+43
| |
* | docs: added a page detailing metadata format.Tom Rondeau2012-12-131-0/+322
| |
* | core: updates metadata parser: don't assume value is a float.Tom Rondeau2012-12-132-34/+36
| | | | | | | | Also fixes an error in Doxygen markup.
* | gruel: allow us to use pmt_init_Xvector methods in python.Tom Rondeau2012-12-133-10/+52
| |
* | core: added examples to use metadata source and sink.Tom Rondeau2012-12-134-0/+1326
| |
* | core: metadata file source parses extras header and converts data to tags.Tom Rondeau2012-12-132-2/+29
| |
* | core: updated meta data file sink to extract header metadata as tags and add ↵Tom Rondeau2012-12-132-14/+45
| | | | | | | | them to the tag stream.