Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-01-17 | Adding accessors to Goertzel filter GR block to call setparms from ↵ | Tom Rondeau | |
implementation file for (re)setting parameters. | |||
2011-01-17 | Adding accessor function to Goertzel filter implementaiton to set/reset its ↵ | Tom Rondeau | |
parameters. | |||
2011-01-06 | Fixed error in the name of the test_filter output files. | Tom Rondeau | |
2010-12-28 | Under 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-28 | Allowing PFB interpolator to be called without specifying the taps; autogen ↵ | Tom Rondeau | |
taps inside hierblock. | |||
2010-12-28 | Allowing PFB decimator to be called without specifying the taps; autogen ↵ | Tom Rondeau | |
taps inside hierblock. | |||
2010-12-28 | PFB 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-28 | Updating the arb. resampler to use the optfir filter that provides better ↵ | Tom Rondeau | |
specificatiion of stopband atten. | |||
2010-12-23 | Modifying the unittest output. XML files are no longer written outside of ↵ | Tom Rondeau | |
the build tree. | |||
2010-12-12 | PFB resampler: fix it this way to avoid the signed/unsigned warning. | Tom Rondeau | |
2010-12-12 | PFB resampler: fixes bug where filter could be looking past the number of ↵ | Tom Rondeau | |
inputs. | |||
2010-12-06 | Modifying blsk2 wrapper for PFB arbitrary resampler to allow the user to ↵ | Tom Rondeau | |
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. | |||
2010-11-24 | Changing API for gr_skiphead to use uint64_t for the offset instead of ↵ | Tom Rondeau | |
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. | |||
2010-11-24 | Adding typedef for uint64_t and int64_t so we can use them through SWIG. | Tom Rondeau | |
2010-11-24 | Merge branch 'warnings' | Tom Rondeau | |
2010-11-23 | Fixing output types from tap_type to o_type in gr_single_pole_iir.h. Doesn't ↵ | Tom Rondeau | |
make a difference in the current uses of this class, but could in the future. Thanks to Achilleas Anastasopoulos for pointing this out. | |||
2010-11-15 | Removing autogenerated file. | Tom Rondeau | |
2010-11-08 | Adding a bit more checking on file operations. | Tom Rondeau | |
2010-11-08 | Fixing copyright date. | Tom Rondeau | |
2010-11-08 | Fixed warning re defining GNU_SOURCE. Can probably just remove it since it's ↵ | Tom Rondeau | |
defined in config, but this won't hurt anyone. | |||
2010-11-08 | Fixing signed/unsigned warnings. | Tom Rondeau | |
2010-11-02 | Sneaking in a few warning fixes to this branch. | Tom Rondeau | |
2010-11-02 | Adding ability for FIR filter with internal buffer to decimate. | Tom Rondeau | |
Also adds QA code to test decimate by 2 and 5. Removes lib/filter/gri_fir_filter_with_buffer_ccf.h that is autogenerated. | |||
2010-10-29 | Merge branch 'makefile_var_ordering' | Tom Rondeau | |
2010-10-17 | Adding ccf version of fir filter to gitignore. | Tom Rondeau | |
2010-10-17 | Removing nonexistent gri .i file from Makefile. Got a bit carried away with ↵ | Tom Rondeau | |
the copy/paste. | |||
2010-10-17 | Removing ccf version of filter that is now autogenerated. | Tom Rondeau | |
2010-10-17 | Fixing up filters a bit to pass QA tests for all versions. | Tom Rondeau | |
2010-10-16 | Fixes Makefile for fir filter generators. | Tom Rondeau | |
Adding new QA code for all other fir filters. fff and fsf versions currently failing. | |||
2010-10-16 | Using generators to make gri_fir_filter_with_buffer_XXX into all possible ↵ | Tom Rondeau | |
in/out/tap types we support. | |||
2010-10-16 | Merge branch 'synfilt' | Tom Rondeau | |
2010-10-16 | Adding QA code for fir filter with buffer. | Tom Rondeau | |
2010-10-16 | Cleaning up synthesis filter and using new FIR filter with buffer. | Tom Rondeau | |
2010-10-16 | Cleaning up the new FIR filter implementation. Protects against some corner ↵ | Tom Rondeau | |
cases and adds filterN. | |||
2010-10-16 | Adding a FIR filter implemented with its own internal buffer. This one keeps ↵ | Tom Rondeau | |
its own delay line and just takes in input samples instead of a pointer to an external buffer. The synthesis filter is being updated to use the new FIR implementation. | |||
2010-10-09 | rearrange includes to always be: internal GR, external, with GR. | Michael Dickens | |
2010-10-06 | Checks to make sure XML path is writable before making the XML runner. ↵ | Tom Rondeau | |
Ignores it if directory is now writable. | |||
2010-10-06 | Fixed missing set_relative_rate in these two blocks. The others don't ↵ | Tom Rondeau | |
actually do it, even though it's counter-intuitive for the pfb_decimate, which is a sync_block (decimation actually care of in the stream_to_streams). | |||
2010-10-03 | Updating all python QA programs in gnuradio-core to output XML files. | Tom Rondeau | |
Also fixed gr_unittest.py to print to the screen and fail make check properly if there's an error. Need to find a way to use XML runner with main() to fail make check and output to screen, too. | |||
2010-10-03 | Adding gr_xmlrunner.py to Makefile. | Tom Rondeau | |
2010-10-03 | Adding XML output to Python unittests. | Tom Rondeau | |
gr_unittest.py was updated to handle the path and file creation and run the XML runner gr_xmlrunner.py is a public domain program written by Sebastian Rittau <srittau@jroger.in-berlin.de> (THANKS!) to extend Python's unittest module to handle XML JUnit format output. This was renamed from xmlrunner.py if any future work is done on it from our project as well as to keep the namespace clean and clear. qa_skiphead.py is a first test program for the XML output. Creates an outputfile $HOME/.gnuradio/unittest/python/test_skiphead.xml. | |||
2010-10-02 | Moving XML output files from cppunit tests to $HOME/.gnuradio/unittests. | Tom Rondeau | |
This also adds a new utility gr_unittests.h, which sets up the path for output files. | |||
2010-09-30 | Adding an XML outputter for the CPP Unit tests. This is to a) store the ↵ | Tom Rondeau | |
output information but also b) for integration with Hudson for logging and displaying the results during the build stages. This only covers a few cases so far and I need to define a better place to save the output files. | |||
2010-08-03 | Merge branch 'maint' | Johnathan Corgan | |
2010-08-03 | Modify all block factories to use gnuradio::get_initial_sptr. | Eric Blossom | |
2010-08-03 | fix scoped_lock that didn't ref mutex | Eric Blossom | |
2010-08-02 | Revert "gnuradio-core: allows configuring FFTW to use ESTIMATE vs. MEASURE" | Johnathan Corgan | |
This reverts commit f23a2b33ca1bebf0c3a5fa26fdcff11827744b77. This change introduced a segfault when calling into the gr_prefs module during the gri_fft helper class constructor. Until this is debugged, the functionality is being reverted. | |||
2010-07-21 | gnuradio-core: export missing public methods in gr.agc2 | Alexandru Csete | |
Alexandru Csete: The gr_agc2 block has public methods to set and get the AGC levels and rates; however, only a few of these interfaces are exported to Python and none of them are available in GRC. The attached patch adds the missing public methods to gri_agc2_cc.i and gri_agc2_ff.i and defines the corresponding callbacks in the gr_agc2_xx.xml GRC block. | |||
2010-07-05 | Merge branch 'patches/marcus/stripchart' | Johnathan Corgan | |
Conflicts: gr-wxgui/src/python/scope_window.py * Adds new scope window trigger, TRIG_MODE_STRIPCHART * Allows config file selection of whether background window sinks still run * Allows config file selection of default trigger mode * Allows config file selection of default waterfall sink color mode [wxgui] #Setting this to true prevents the window sinks from stopping when they #are not displayed, as when they are in a notebook with a hidden tab. run_always = False # Default scope trigger mode. # # 0 = Freerun # 1 = Auto (default) # 2 = Normal # 3 = Stripchart trig_mode = 1 # Default waterfall sink color mode. Valid choices are 'rgb1', 'rbg2', # 'rgb3', or 'gray' waterfall_color = rgb1 | |||
2010-07-05 | Merge branch 'patches/marcus/file_sink' | Johnathan Corgan | |