summaryrefslogtreecommitdiff
path: root/gnuradio-core
AgeCommit message (Collapse)Author
2011-01-23Forced initialization of arrays to avoid warnings.Tom Rondeau
2011-01-23Needed to specify the use of boost::filesystem library.Tom Rondeau
2011-01-23Merge branch 'mergeme/volk/x86_cpuid_simplification' into nextTom Rondeau
2011-01-23Merge branch 'mergeme/misc/mkdir_simplification' into nextTom Rondeau
2011-01-23Merge branch 'mergeme/misc/mkdir_simplification' of git://gnuradio.org/jblum ↵Tom Rondeau
into mergeme/misc/mkdir_simplification
2011-01-22implemented cpuid gcc call in gr-filter gr_cpu_x86.cc, removes cpuid asm filesJosh Blum
2011-01-22created gr_sys_paths.h to house functions for getting system pathsJosh Blum
gr_sys_paths.h has gr_tmp_path() and gr_appdata_path() this replaces gr_tmp_path.h
2011-01-22Merge branch 'mergeme/misc/complex_dotprod_generic_header_fix' into nextTom Rondeau
2011-01-22Merge branch 'mergeme/math/gr_math_simplification' into nextTom Rondeau
2011-01-22Merge branch 'mergeme/misc/gr_fxpt_static_const_fix' into nextTom Rondeau
2011-01-22Merge branch 'mergeme/math/explicit_type_overloads' into nextTom Rondeau
2011-01-22Updating copyright.Tom Rondeau
2011-01-18cleanup mkdir usage with boost filesystem:Josh Blum
Replaced copy/pasted code and MKDIR_TAKES_ONE_ARG #ifdefs with portable boost filesystem path and directory creation. Gets the correct home directory on windows systems: APPDATA. Replaces large amounts of copypasta with single lines of code. Removes MKDIR_TAKES_ONE_ARG configuration checks from m4 files. Adds boost filesystem and system library as build dependencies.
2011-01-17gr fxpt static const fix:Josh Blum
Initialize PI and TWO_TO_THE_31 the standard portable c++ way. No need for "gcc 4.x fix". See http://www.parashift.com/c++-faq-lite/ctors.html#faq-10.12
2011-01-17remove header includes in *complex_dotprod_generic.cc that don't belongJosh Blum
2011-01-17math explicit type overloads:Josh Blum
Use explicit data type casts in math functions where the overloaded function could not be determined. affects msvc
2011-01-17gr math simplification:Josh Blum
Replaces gr_gcd, gr_isnan, and gr_signbit one-time instances with boot math calls. No point in wrapping these utility math functions into gnuradio when they are 1) provided by boost 2) only called once Removes gr_math.cc, and configure checks for isnan.
2011-01-17Merge branch 'master' into nextTom Rondeau
* master: Adding new accessor for Goertzel filter to GRC block. Thanks to Marcus Leech for the last three modifications. Adding accessors to Goertzel filter GR block to call setparms from implementation file for (re)setting parameters. Adding accessor function to Goertzel filter implementaiton to set/reset its parameters.
2011-01-17Adding accessors to Goertzel filter GR block to call setparms from ↵Tom Rondeau
implementation file for (re)setting parameters.
2011-01-17Adding accessor function to Goertzel filter implementaiton to set/reset its ↵Tom Rondeau
parameters.
2011-01-17Merge branch 'e100-updates' into nextTom Rondeau
2011-01-10qa_set_msg_handler: Use sleep instead of yield.Eric Blossom
Confirmed to fix problem on 32-bit CoreDuo. Probably fixes problem on Arm too.
2011-01-10dotprod_fff : Fix clobber register entries.Philip Balister
2011-01-10dotprod_ccf : Add NEON support for ccf fir filter.Philip Balister
2011-01-06Add QA code for gr_basic_block::set_msg_handler.Eric Blossom
2011-01-06Augment gr_nop to count received pmt messages by way of set_msg_handler.Eric Blossom
2011-01-06Change pmt message handling interface in gr_basic_block.hEric Blossom
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.
2011-01-06Merge branch 'master' into nextTom Rondeau
* master: Fixed error in the name of the test_filter output files.
2011-01-06Fixed error in the name of the test_filter output files.Tom Rondeau
2011-01-05Have swig/guile wrap enums and constants as scheme variables, not functions.Eric Blossom
2011-01-04Fixing how far get_tags_in_range looks; should be exclusive of end point.Tom Rondeau
2011-01-04Merge branch 'next' of gnuradio.org:gnuradio into nextTom Rondeau
2011-01-04Only prune if we've moved on in the number of items read. Fixes the problem ↵Tom Rondeau
or premature pruning.
2011-01-02Going back to iterators for use in erasing items from the deque.Tom Rondeau
2011-01-02Not using an iterator to prune the tags to see if this fixes a problem in ↵Tom Rondeau
Windows.
2011-01-02Buffers now hold on to all tags from both this window and the last window of ↵Tom Rondeau
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.
2011-01-02Fixing a comment.Tom Rondeau
2010-12-30Create symlink using install-exec-local, not install-exec-hook.Eric Blossom
Also rm the symlink using uninstall-local. Passes distcheck.
2010-12-30Move example waveforms to gnuradio-examples/waveforms.Eric Blossom
2010-12-30Create and install gr-run-waveform-script, and symlink to it when installed.Eric Blossom
2010-12-28Merge branch 'master' into nextTom Rondeau
* 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.
2010-12-28Under extreme circumstances, optfir might never produce an answer ↵Tom Rondeau
(atten>300), so this puts in a check on the ripple; if it gets too large, stop trying.
2010-12-28Allowing PFB interpolator to be called without specifying the taps; autogen ↵Tom Rondeau
taps inside hierblock.
2010-12-28Allowing PFB decimator to be called without specifying the taps; autogen ↵Tom Rondeau
taps inside hierblock.
2010-12-28PFB channelizer can be specified without external taps. Uses optfir to ↵Tom Rondeau
generate an internal filter to cover the channel bandwidth; user can specify the attenuation of this filter if desired.
2010-12-28Updating the arb. resampler to use the optfir filter that provides better ↵Tom Rondeau
specificatiion of stopband atten.
2010-12-23Merge branch 'master' into nextTom Rondeau
* 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
2010-12-23Modifying the unittest output. XML files are no longer written outside of ↵Tom Rondeau
the build tree.
2010-12-23Add test to see if Guile was built with threads enabledEric Blossom
2010-12-22Check for lt_dladvise_global and fall back to using lt_dlopenext if not found.Eric Blossom