summaryrefslogtreecommitdiff
path: root/gnuradio-core/src
Commit message (Collapse)AuthorAgeFilesLines
* core: comment out QA debug outputJohnathan Corgan2012-01-071-2/+2
|
* Merge branch 'max_noutputs'Tom Rondeau2012-01-0317-41/+107
|\
| * scheduler: add default (large) max noutput_items to C++ run function.Tom Rondeau2012-01-022-3/+7
| |
| * scheduler: if the block is an interpolator that needs a minimum of some ↵Tom Rondeau2012-01-021-1/+5
| | | | | | | | number of outputs based on the inputs, let it. This is an acceptable (actually, necessary) exception to the specified limit.
| * scheduler: access to set max noutput_items in start method through Python.Tom Rondeau2012-01-011-4/+4
| |
| * scheduler: first attempt at being able to set an upper limit on the ↵Tom Rondeau2012-01-0115-34/+89
| | | | | | | | noutput_items for all blocks in a flowgraph.
| * Merge branch 'maint'Tom Rondeau2012-01-013-54/+109
| |\
| | * pfb: bug fix for ccf version of the PFB clock sync to handle the d_osps ↵Tom Rondeau2012-01-011-1/+4
| | | | | | | | | | | | | | | | | | | | | | | | parameter better. The number of output items is now set based on the d_osps and the check in the work function is not needed (actually, that check was wrong and should never have worked correctly, anyway). This commit also changes the number of samples needed in the QA code for the constellation receiver for a faster test.
* | | Merge branch 'maint'Johnathan Corgan2012-01-022-1/+3
|\ \ \
| * | | volk: fix overrule detection (cant reply on cpu name)Josh Blum2012-01-021-1/+1
| | | | | | | | | | | | | | | | Better detection for x86 and 32 or 64 bit.
| * | | core: fix gr_udp_sink by including asioJosh Blum2012-01-021-0/+2
| | | |
* | | | Merge branch 'maint'Tom Rondeau2012-01-023-60/+124
|\| | | | |/ / |/| |
| * | pfb: bug fix for ccf version of the PFB clock sync to handle the d_osps ↵Tom Rondeau2012-01-022-7/+19
| |/ | | | | | | | | | | | | | | parameter better. The block now holds state between calls to work for the number of output symbols instead of requiring a certain number of available outputs (that may never be satisfied). This commit also changes the number of samples needed in the QA code for the constellation receiver for a faster test.
| * pfb: updated and hopefully better documentation of the PFB clock sync blocks.Tom Rondeau2012-01-012-53/+105
| |
* | core: added accessors to get all settable values of the channel_model objects.Tom Rondeau2011-12-223-0/+35
| |
* | core: added accessors to noise_source to get type and amplitude of object.Tom Rondeau2011-12-223-0/+18
| |
* | filters: added accessor functions to FFT and FIR filter classes to return ↵Tom Rondeau2011-12-2210-1/+50
|/ | | | vector of taps.
* core: API exposure patch.Nick Foster2011-12-141-1/+1
|
* runtime: improve hier_block2 error messagesJulien Olivain2011-12-131-7/+10
|
* docs: fixing format of link in simply_framer_sync. Helps older Doxygen ↵Tom Rondeau2011-12-111-1/+1
| | | | versions understand the link format.
* gnuradio-core: fix typo in documentationTimo Juhani Lindfors2011-12-081-1/+1
|
* docs: fixes some warnings.Tom Rondeau2011-12-061-8/+8
| | | | There is way too much institutional knowledge in these makefiles now. Another reason I'm glad we're going to cmake, which is being kept more sane as all of the problems are already known.
* Fixed warnings generated by variable declaration order.Tom Rondeau2011-12-061-2/+2
|
* docs: more fixes for generated swig files. This worked before the merge, but ↵Tom Rondeau2011-12-051-1/+1
| | | | this forces the build system to generate these before processing the other swig files.
* docs: better install of swig docs .i files since we actually have a variable ↵Tom Rondeau2011-12-041-4/+5
| | | | to take care of it already.
* docs: installing generated _doc.i files under autotools.Tom Rondeau2011-11-281-2/+5
|
* docs: autotools Makefile.am generates empty swig_docs .i files; builds in ↵Tom Rondeau2011-11-271-0/+14
| | | | | | | | autotools and cmake. The autotools build does not auto-generate the Python documentation for each block like we do with the cmake build, but the empty .i files are required to build things regardless. The swig_doc.py and doxyxml files are distributed with the autotools build in case someone wants to generate this on their own (see README.doxyxml for how to do this). Only for gnuradio-core and gr-digital currently.
* work on swig docs, added to core and digitalJosh Blum2011-11-167-23/+29
|
* cmake: fixed up swig deps properly for make -j*Josh Blum2011-11-042-27/+18
| | | | | Also took the time to fix up the swig index file generation. This may have not-been auto-regenerating before as well.
* Merge remote branch 'jblum/master'Tom Rondeau2011-10-251-1/+1
|\
| * I'm sorry but llrintf had one of the best conversions of all timeJosh Blum2011-10-251-1/+1
| |
* | reed-solomon: fixed the signed/unsigned warnings in the RS code.Tom Rondeau2011-10-255-24/+25
|/ | | | | | Some of these had to be done through type-casting since changing the actual data type would cause the tests to fail. make test still passes.
* usrp: these guys shouldn't still be here...Tom Rondeau2011-10-244-363/+0
|
* core: really fixed this on 32-bit machines (actually tested). Forced to ↵Tom Rondeau2011-10-242-6/+7
| | | | promote to a 64-bit int to handle the overflow, so this is going to take a hit on 32-bit machines.
* core: fixed float_to_int for 32-bit machines.Tom Rondeau2011-10-241-3/+3
|
* Merge branch 'cmake_foo2'Tom Rondeau2011-10-231-8/+1
|\
| * the librariesJosh Blum2011-10-231-8/+1
| |
* | core: added a test for float_to_int overflow clipping.Tom Rondeau2011-10-231-0/+16
| |
* | core: Added type conversion int->float (issue #192). Added with a gri file ↵Tom Rondeau2011-10-2313-3/+356
|/ | | | and also added a gri file for float->int to perform function inside gr_float_to_int. Also added QA code for the new block.
* Merge remote branch 'jblum/cmake_fixes' into nextTom Rondeau2011-10-227-10/+41
|\
| * core: runtime.i dont include gr_tag.i, avoids pmt dependencyJosh Blum2011-10-211-1/+0
| |
| * tags: added swigging for gr_tags headerJosh Blum2011-10-206-9/+41
| |
| * removes gcc warning, dont need symbol export on plain c structsJosh Blum2011-10-201-1/+1
| |
* | Merge branch 'next' of gnuradio.org:gnuradio into nextTom Rondeau2011-10-201-2/+2
|\|
| * filter: fixed x86 checking logic when not x86Josh Blum2011-10-201-2/+2
| |
* | build: fixed missing file in Makefile.am.Tom Rondeau2011-10-201-0/+1
|/
* core: fixing AM_CPPFLAGS in viterbi/Makefile.amTom Rondeau2011-10-201-1/+3
|
* Somehow, these headers got duplicated. Removed from core, are in gr-digital.Tom Rondeau2011-10-195-403/+0
|
* Fixed Makefile.am trailing backslash for autofoo build.Tom Rondeau2011-10-191-1/+1
|
* tags: made tags object orientedJosh Blum2011-10-1922-271/+165
|