summaryrefslogtreecommitdiff
path: root/gnuradio-core/src
Commit message (Collapse)AuthorAgeFilesLines
...
* | Merge branch 'e100-updates' into nextTom Rondeau2011-01-177-17/+292
|\ \
| * | dotprod_fff : Fix clobber register entries.Philip Balister2011-01-101-1/+2
| | |
| * | dotprod_ccf : Add NEON support for ccf fir filter.Philip Balister2011-01-106-16/+290
| | |
* | | qa_set_msg_handler: Use sleep instead of yield.Eric Blossom2011-01-101-2/+2
|/ / | | | | | | Confirmed to fix problem on 32-bit CoreDuo. Probably fixes problem on Arm too.
* | 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
| |
* | Have swig/guile wrap enums and constants as scheme variables, not functions.Eric Blossom2011-01-051-0/+5
| |
* | 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-047-119/+62
|\ \
| * | Create symlink using install-exec-local, not install-exec-hook.Eric Blossom2010-12-301-7/+6
| | | | | | | | | | | | Also rm the symlink using uninstall-local. Passes distcheck.
| * | Move example waveforms to gnuradio-examples/waveforms.Eric Blossom2010-12-303-74/+0
| | |
| * | Create and install gr-run-waveform-script, and symlink to it when installed.Eric Blossom2010-12-304-43/+61
| | |
* | | 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
|/ /
* | Merge branch 'master' into nextTom Rondeau2010-12-284-13/+88
|\| | | | | | | | | | | | | | | | | * 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-281-3/+19
| | | | | | | | 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.
* | Merge branch 'master' into nextTom Rondeau2010-12-232-24/+22
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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
| * Modifying the unittest output. XML files are no longer written outside of ↵Tom Rondeau2010-12-232-24/+22
| | | | | | | | the build tree.
| * PFB resampler: fix it this way to avoid the signed/unsigned warning.Tom Rondeau2010-12-121-1/+2
| |
| * PFB resampler: fixes bug where filter could be looking past the number of ↵Tom Rondeau2010-12-121-1/+1
| | | | | | | | inputs.
* | Add test to see if Guile was built with threads enabledEric Blossom2010-12-231-0/+1
| |
* | Check for lt_dladvise_global and fall back to using lt_dlopenext if not found.Eric Blossom2010-12-221-0/+31
| |
* | Merge branch 'next' into guile.Eric Blossom2010-12-214-9/+17
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Passes distcheck. * next: (32 commits) volk: Fix for popcnt's 64/32-bit issues. Using a copy of config.guess and config.sub instead of sym links. Including time header to qa files. Changed python env variable to more globally usable version. gr_uhd: Quick fix for make distcheck failures if UHD is not installed. 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. resampler PFB: Sets relative rate when rate is changed. Create method to set rate on pfb_arb_resamp after it has been created. Allow it to be called from GRC. volk: fix for running 32-bit OS on 64-bit processor. System is correctly identified as 32-bit and compiles with the correct flags. volk: changing the path variables again. This works on my various systems tested. Using abs_ path names failed on Ubuntu 8.04 32-bit. volk: May be a hack, but it was required for my 32-bit Fedora 13 to work. volk: Removing unnecessary shell script; last commit takes care if its functions. volk: Fixing build system to handle making volk_mktables, volk_tables.h, and volk_config.h instead of a standalone shell script. volk: readding 16sc_magnitude_32f_sse with fix for SSE hadd_ps error. volk: Adding a few more generic-only test cases. volk: adding generic QA test for 16sc_magnitude_32f. volk: modified the configure scripts to output which architectures it will be building based on the configure tests. uhd: update notes in grc blocks for addressing scheme volk: Removing erroneous SSE function that actually usese an SSE3 intrin (mm_hadd_ps). ...
| * | PFB resampler: fix it this way to avoid the signed/unsigned warning.Tom Rondeau2010-12-121-1/+2
| | |
| * | PFB resampler: fixes bug where filter could be looking past the number of ↵Tom Rondeau2010-12-121-1/+1
| | | | | | | | | | | | inputs.
| * | resampler PFB: Sets relative rate when rate is changed.Tom Rondeau2010-12-122-3/+1
| | |
| * | Create method to set rate on pfb_arb_resamp after it has been created.Matt Ettus2010-12-114-5/+14
| | | | | | | | | | | | Allow it to be called from GRC.
* | | Use load-extension-global instead of load-extensionEric Blossom2010-12-106-6/+17
| | |
* | | Add new Guile gsubr that loads shared libraries using the equivalent of the ↵Eric Blossom2010-12-102-0/+102
| | | | | | | | | | | | | | | | | | | | | RTLD_GLOBAL flag. This is part of a work-around for swig bug: 1863647 http://sourceforge.net/tracker/index.php?func=detail&aid=1863647&group_id=1645&atid=101645
* | | Disable guile udp tests. They were causing a problem on some systems.Eric Blossom2010-12-091-6/+6
| | |
* | | Moved out-of-tree includes out of gnuradio_core_INCLUDES to ensure thatEric Blossom2010-12-072-2/+6
| | | | | | | | | | | | in-tree includes are searched before out-of-tree includes.
* | | Remove incorrect if PYTHON around swiginclude_HEADERSEric Blossom2010-12-076-12/+1
| | |
* | | Merge branch 'next' into guile-nextEric Blossom2010-12-0649-74/+2174
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * next: (116 commits) Adding new example script for using the new PFB arbitrary resampler interface. One resampler takes user-generated taps and another resampler just takes the resampling rate. Both input and output signals are plotted. Modifying blsk2 wrapper for PFB arbitrary resampler to allow the user to just specify the requested resampling rate without providing their own filter taps. uhd: reverting tag changes on uhd single usrp source, there seems to be issues with the work() logic uhd: removed default value chan=0 in the cc files WITH_INCLUDES _must_ be last uhd: replaced CFLAGS with CPPFLAGS variable, and fixed swig args FIXME uhd: default channel params to zero for single source and sink blocks Revert "Removed usrp2-firmware from being automatically built." Remove generated file from repo Removed usrp2-firmware from being automatically built. uhd: added libdir to UHD CFLAGS (shared by lib and swig) Swapping out preset keys until I work out some of their issues. Modifying QA tests for the sample tags. By default, it only checks the sizes of the tags since order is not specified or guarenteed. Block is a gr_block, so this sets its relative rate. Was required for using in the QA of the sample tags code. Removing global pmt constants. Were causing segfaults during make check. Must fix this later. Fixing up the UHD sample tag example to take command line options. Swapping order of testing rrate. Changing propagation policy enum type name and making a few other minor edits. Changing API for gr_skiphead to use uint64_t for the offset instead of size_t (still unsigned). Fixes issue #304. Adding typedef for uint64_t and int64_t so we can use them through SWIG. ... Passes make distcheck.
| * | Merge branch 'master' into nextTom Rondeau2010-12-0616-41/+69
| |\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * master: Adding new example script for using the new PFB arbitrary resampler interface. One resampler takes user-generated taps and another resampler just takes the resampling rate. Both input and output signals are plotted. Modifying blks2 wrapper for PFB arbitrary resampler to allow the user to just specify the requested resampling rate without providing their own filter taps. Changing API for gr_skiphead to use uint64_t for the offset instead of size_t (still unsigned). Fixes issue #304. Adding typedef for uint64_t and int64_t so we can use them through SWIG. Removing warnings in portaudio source/sink. Fixing output types from tap_type to o_type in gr_single_pole_iir.h. Doesn't make a difference in the current uses of this class, but could in the future. Thanks to Achilleas Anastasopoulos for pointing this out. first shot at Windows-compatible LIBUSB check Tweak LIBUSB m4 script to not check for 'usb_debug' symbol on Windows, because the symbol does not exist for that platform (only, it seems) Removing autogenerated file. Updated doxygen Doxyfile for newer versions. Adding file operations result checking. Updating audio_jack to new interface for creating a client. Fixes depricated warning. Potential fix to MSDD warnings by setting sequence number from buffer more explicitly. Adding a bit more checking on file operations. Fixing copyright date. Fixed warning re defining GNU_SOURCE. Can probably just remove it since it's defined in config, but this won't hurt anyone. Fixing signed/unsigned warnings. first shot at Windows-compatible LIBUSB check Tweak LIBUSB m4 script to not check for 'usb_debug' symbol on Windows, because the symbol does not exist for that platform (only, it seems) Conflicts: gnuradio-core/src/lib/swig/gnuradio.i
| | * Modifying blsk2 wrapper for PFB arbitrary resampler to allow the user to ↵Tom Rondeau2010-12-061-2/+9
| | | | | | | | | | | | | | | | | | | | | | | | just specify the requested resampling rate without providing their own filter taps. Taps are then generated inside hier_block2 to cover full bandwidth of input signal. Optional attenuation parameter may be provided.
| | * Changing API for gr_skiphead to use uint64_t for the offset instead of ↵Tom Rondeau2010-11-243-13/+13
| | | | | | | | | | | | | | | | | | size_t (still unsigned). Fixes issue #304. Also uses uint64_t's internally so everyone is always on the same type. This should not affect anyone's use of the block.
| | * Adding typedef for uint64_t and int64_t so we can use them through SWIG.Tom Rondeau2010-11-241-0/+2
| | |
| | * Merge branch 'warnings'Tom Rondeau2010-11-2410-22/+42
| | |\
| | | * Adding a bit more checking on file operations.Tom Rondeau2010-11-082-6/+25
| | | |
| | | * Fixing copyright date.Tom Rondeau2010-11-081-1/+1
| | | |