summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* volk_rename: renamed basically everything in the volk lib to have logically ↵Nick Foster2011-01-16119-3938/+716
| | | | consistent function names
* Volk: Makefile changes to use new test framework.Nick Foster2011-01-141-194/+24
| | | | Doesn't currently build libvolk_qa, as I haven't really determined an appropriate place for "leftover" tests that the standard framework won't handle.
* Volk: QA code fixes, more Orc routines.Nick Foster2011-01-146-20/+97
| | | | | | Broke the 32fc_multiply Orc impl because I'm lame and lost some work. Fixed volk_8s_convert_16s Orc impl. Still need to rename functions and modify the QA sig parser to match. Then rewrite makefiles.
* Volk: Working on a new QA architecture that doesn't require individual test ↵Nick Foster2011-01-126-7/+247
| | | | programs.
* Volk: fixed normalize.Nick Foster2011-01-111-2/+2
|
* Volk: Added more Orc routines (including complex multiply). Started redoing ↵Nick Foster2011-01-118-47/+112
| | | | the testing framework so it's easier to add new archs to tests.
* Merge branch 'next' of http://gnuradio.org/git/gnuradio into nextNick Foster2011-01-10453-6863/+18729
|\
| * Add QA code for gr_basic_block::set_msg_handler.Eric Blossom2011-01-064-1/+133
| |
| * Augment gr_nop to count received pmt messages by way of set_msg_handler.Eric Blossom2011-01-062-7/+26
| |
| * Change pmt message handling interface in gr_basic_block.hEric Blossom2011-01-062-12/+50
| | | | | | | | | | | | | | | | | | | | | | | | Change the API such that the message handler is now implemented with a callback, not an overridden virtual function. The callback is now set using gr_basic_block::set_msg_handler, which will accept pretty much any kind of callable. This change allows us to split the machinery for message handling out from the block inheritance hierarchy, and provides a foundation that can be used to build or experiment with arbitrary message dispatching techniques.
| * Merge branch 'master' into nextTom Rondeau2011-01-061-1/+1
| |\ | | | | | | | | | | | | * master: Fixed error in the name of the test_filter output files.
| | * Fixed error in the name of the test_filter output files.Tom Rondeau2011-01-061-1/+1
| | |
| * | Add documentation for gr-run-waveform and define-waveformEric Blossom2011-01-051-1/+248
| | |
| * | Have swig/guile wrap enums and constants as scheme variables, not functions.Eric Blossom2011-01-052-2/+7
| | |
| * | Fixing how far get_tags_in_range looks; should be exclusive of end point.Tom Rondeau2011-01-041-1/+1
| | |
| * | Merge branch 'next' of gnuradio.org:gnuradio into nextTom Rondeau2011-01-0414-59/+109
| |\ \
| | * | Create symlink using install-exec-local, not install-exec-hook.Eric Blossom2010-12-302-10/+12
| | | | | | | | | | | | | | | | Also rm the symlink using uninstall-local. Passes distcheck.
| | * | Move example waveforms to gnuradio-examples/waveforms.Eric Blossom2010-12-307-6/+30
| | | |
| | * | Create and install gr-run-waveform-script, and symlink to it when installed.Eric Blossom2010-12-305-45/+62
| | | |
| | * | Add symlink to gr-run-waveform when installing gr-run-waveform-binary.Eric Blossom2010-12-302-0/+7
| | | |
| | * | Rename gr-run-waveform/gr-run-waveform.cc to gr-run-waveform-binary.ccEric Blossom2010-12-303-6/+6
| | | | | | | | | | | | | | | | | | | | This is the first step to allow the binary and the script versions of gr-run-waveform to co-exist.
| * | | Only prune if we've moved on in the number of items read. Fixes the problem ↵Tom Rondeau2011-01-041-3/+4
| | | | | | | | | | | | | | | | or premature pruning.
| * | | Going back to iterators for use in erasing items from the deque.Tom Rondeau2011-01-021-3/+13
| | | |
| * | | Not using an iterator to prune the tags to see if this fixes a problem in ↵Tom Rondeau2011-01-021-5/+2
| | | | | | | | | | | | | | | | Windows.
| * | | Buffers now hold on to all tags from both this window and the last window of ↵Tom Rondeau2011-01-022-5/+6
| | | | | | | | | | | | | | | | | | | | | | | | items instead of just this window. This protects against the rare times when one block is called twice before another block is, thereby pruning the tags before they can be passed downstream. The same thing will happen if a block is called 3 times in a row, which is highly unlikely.
| * | | Fixing a comment.Tom Rondeau2011-01-021-2/+1
| |/ /
| * | Adding tags back into UHD source. If a packet received from a UHD source has ↵Tom Rondeau2010-12-301-1/+12
| | | | | | | | | | | | | | | | | | a timestamp, we create a tag from it and pass it down the line. If no timestamp, produce no tags. This should not affect behavior of the UHD single source for those not dealing with tags.
| * | Fixes to psd plotting tool. Trying to keep up with the changing API; this ↵Tom Rondeau2010-12-301-14/+14
| | | | | | | | | | | | should be backwards compatible.
| * | More generic error message if guile-dev not installed.Tom Rondeau2010-12-301-1/+1
| | |
| * | Merge branch 'master' into nextTom Rondeau2010-12-285-14/+89
| |\| | | | | | | | | | | | | | | | | | | | | | | | | * master: Under extreme circumstances, optfir might never produce an answer (atten>300), so this puts in a check on the ripple; if it gets too large, stop trying. Allowing PFB interpolator to be called without specifying the taps; autogen taps inside hierblock. Allowing PFB decimator to be called without specifying the taps; autogen taps inside hierblock. PFB channelizer can be specified without external taps. Uses optfir to generate an internal filter to cover the channel bandwidth; user can specify the attenuation of this filter if desired. Updating the arb. resampler to use the optfir filter that provides better specificatiion of stopband atten.
| | * Under extreme circumstances, optfir might never produce an answer ↵Tom Rondeau2010-12-284-1/+17
| | | | | | | | | | | | (atten>300), so this puts in a check on the ripple; if it gets too large, stop trying.
| | * Allowing PFB interpolator to be called without specifying the taps; autogen ↵Tom Rondeau2010-12-281-2/+19
| | | | | | | | | | | | taps inside hierblock.
| | * Allowing PFB decimator to be called without specifying the taps; autogen ↵Tom Rondeau2010-12-281-3/+19
| | | | | | | | | | | | taps inside hierblock.
| | * PFB channelizer can be specified without external taps. Uses optfir to ↵Tom Rondeau2010-12-282-4/+20
| | | | | | | | | | | | generate an internal filter to cover the channel bandwidth; user can specify the attenuation of this filter if desired.
| | * Updating the arb. resampler to use the optfir filter that provides better ↵Tom Rondeau2010-12-281-5/+15
| | | | | | | | | | | | specificatiion of stopband atten.
| * | Add missing .test files to tarball.Eric Blossom2010-12-276-0/+47
| | |
| * | Add minimal Python and Guile QA code to gr-uhd.Eric Blossom2010-12-277-3/+123
| | |
| * | distcheck fixEric Blossom2010-12-271-1/+1
| | |
| * | Add scheme-ish convenience functions to usrp2.scm.Eric Blossom2010-12-274-2/+81
| | |
| * | Add minimal guile test code gr-usrp2.Eric Blossom2010-12-275-9/+61
| | |
| * | Rename usrp2.i to usrp2_swig.i to allow insertion of guile convenience ↵Eric Blossom2010-12-276-64/+96
| | | | | | | | | | | | functions.
| * | gr-uhd: Fixing makefile to define GR_HAVE_UHD for swig. This was lost in the ↵Tom Rondeau2010-12-261-0/+6
| | | | | | | | | | | | makefile updates with the guile work. This is a better place/fix, anyway.
| * | Merge branch 'master' into nextTom Rondeau2010-12-236-35/+50
| |\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * master: clean now gets rid of unittest results. Passes distcheck. Modifying the unittest output. XML files are no longer written outside of the build tree. A new patch for fixing the alsa restart issue. Submitted by Volker Schroer. Reverting last change in alsa. PFB resampler: fix it this way to avoid the signed/unsigned warning. PFB resampler: fixes bug where filter could be looking past the number of inputs. Adding a "change in progress" check to alsa sink. Added a check in alsa sink if error has occurred due to blocking; if so, it will just drop samples and not get backed up. Patch taken from Marcus Leech 10/29/2010. Conflicts: Makefile.common gnuradio-core/src/lib/filter/gr_pfb_arb_resampler_ccf.cc
| | * clean now gets rid of unittest results. Passes distcheck.Tom Rondeau2010-12-231-1/+2
| | |
| | * Modifying the unittest output. XML files are no longer written outside of ↵Tom Rondeau2010-12-233-30/+25
| | | | | | | | | | | | the build tree.
| | * Merge branch 'alsa_drop_samples'Tom Rondeau2010-12-222-5/+18
| | |\
| | | * A new patch for fixing the alsa restart issue. Submitted by Volker Schroer.Tom Rondeau2010-12-221-2/+8
| | | |
| | | * Reverting last change in alsa.Tom Rondeau2010-12-222-18/+1
| | | |
| | | * Adding a "change in progress" check to alsa sink.Tom Rondeau2010-12-062-1/+18
| | | |
| | | * Added a check in alsa sink if error has occurred due to blocking; if so, it ↵Tom Rondeau2010-10-302-3/+10
| | | | | | | | | | | | | | | | will just drop samples and not get backed up. Patch taken from Marcus Leech 10/29/2010.