summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2010-12-09Added support for modulation/demodulation of a generic constellation.Ben Reynwar
Not yet robust enough. Inefficient QAM modulation/demodulation also added (via the generic implementation).
2010-12-05Fixed typos in comments ('samples per symbol' not 'samples per second').Ben Reynwar
2010-12-03Merge branch 'grorg-master'Ben Reynwar
2010-12-03Added a new example python script (a stripped down version of ↵Ben Reynwar
benchmark_loopback.py). Made minor change to blks2.demod_pkts.
2010-11-24Changing 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-24Adding typedef for uint64_t and int64_t so we can use them through SWIG.Tom Rondeau
2010-11-24Merge branch 'warnings'Tom Rondeau
2010-11-24Removing warnings in portaudio source/sink.Tom Rondeau
2010-11-23Merge branch 'master' of gnuradio.org:gnuradioTom Rondeau
2010-11-23Fixing 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-23first shot at Windows-compatible LIBUSB checkMichael Dickens
2010-11-23Tweak LIBUSB m4 script to not check for 'usb_debug' symbol on Windows, ↵Michael Dickens
because the symbol does not exist for that platform (only, it seems)
2010-11-23Merge branch 'no_usb_debug_windows'Tom Rondeau
2010-11-17Merge branch 'grorg-master'Ben Reynwar
2010-11-15Removing autogenerated file.Tom Rondeau
2010-11-10Updated doxygen Doxyfile for newer versions.Tom Rondeau
2010-11-09Adding file operations result checking.Tom Rondeau
2010-11-09Updating audio_jack to new interface for creating a client. Fixes depricated ↵Tom Rondeau
warning.
2010-11-08Potential fix to MSDD warnings by setting sequence number from buffer more ↵Tom Rondeau
explicitly.
2010-11-08Adding a bit more checking on file operations.Tom Rondeau
2010-11-08Fixing copyright date.Tom Rondeau
2010-11-08Fixed 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-08Fixing signed/unsigned warnings.Tom Rondeau
2010-11-04first shot at Windows-compatible LIBUSB checkMichael Dickens
2010-11-03Merge branch 'grorg-master'Ben Reynwar
2010-11-03Generation of python docstrings from doxygen xml.Ben Reynwar
swig_doc.i is a swig interface file containing all the docstrings. It is generated using swig_doc.py and included by gnuradio.i. Minor changes to the swig make files have been made so that the generation of swig_doc.i occurs.
2010-11-02Sneaking in a few warning fixes to this branch.Tom Rondeau
2010-11-02Adding 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-11-01Tweak LIBUSB m4 script to not check for 'usb_debug' symbol on Windows, ↵Michael Dickens
because the symbol does not exist for that platform (only, it seems)
2010-10-29Adding doxyxml python package. Acts as interface to doxygen-generated xml.Ben Reynwar
2010-10-29Merge branch 'makefile_var_ordering'Tom Rondeau
2010-10-17Adds a new parameter "y_axis_label" to scopesink2 and the GRC .xml file that ↵Marcus Leech
contains the string for the Y axis label. It defaults to 'Counts' to be consistent with the old version.
2010-10-17Adding ccf version of fir filter to gitignore.Tom Rondeau
2010-10-17Removing nonexistent gri .i file from Makefile. Got a bit carried away with ↵Tom Rondeau
the copy/paste.
2010-10-17Removing ccf version of filter that is now autogenerated.Tom Rondeau
2010-10-17Fixing up filters a bit to pass QA tests for all versions.Tom Rondeau
2010-10-16Fixes Makefile for fir filter generators.Tom Rondeau
Adding new QA code for all other fir filters. fff and fsf versions currently failing.
2010-10-16Using generators to make gri_fir_filter_with_buffer_XXX into all possible ↵Tom Rondeau
in/out/tap types we support.
2010-10-16Merge branch 'synfilt'Tom Rondeau
2010-10-16Work on examples for the synthesize filterbank block. The cleans up the ↵Tom Rondeau
simple example and adds a new example that synthesizes a number of signals and then channelizes them again. It displays the synthesized PSD as well as the PSD and time waveform of one of the channels that's specified in teh code.
2010-10-16Adding QA code for fir filter with buffer.Tom Rondeau
2010-10-16Cleaning up synthesis filter and using new FIR filter with buffer.Tom Rondeau
2010-10-16Cleaning up the new FIR filter implementation. Protects against some corner ↵Tom Rondeau
cases and adds filterN.
2010-10-16Adding a test example for the synthesis filter.Tom Rondeau
2010-10-16Adding 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-09rearrange includes to always be: internal GR, external, with GR.Michael Dickens
2010-10-06Checks to make sure XML path is writable before making the XML runner. ↵Tom Rondeau
Ignores it if directory is now writable.
2010-10-06Fixed 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-06Merge branch 'maint'Johnathan Corgan
* maint: Fixed setting of USB_LIBS for *win* Fix so that non-Darwin OSs use USB_LIBS correctly for linking New way of checking for various LIBUSB names; for legacy version, make sure the symbol 'usb_debug' exists (so-as to not use the 'compat' version). Finally, the simple fix for the qtgui issues; also, changed the naming scheme output from _moc to .moc files because I think this looks cleaner. Removing Waterfall3DPlot. The qwt_plot3d is too much of a hassle to deal with and the plotting is not that stable even when it does work. This does not change the API. Fixed gitignore to reflect changes in moc/ui file naming. Fixes a lot of warnings by cleaning up namespace issues. Finally, the simple fix for the qtgui issues; also, changed the naming scheme output from _moc to .moc files because I think this looks cleaner. Removing qwtplot3d dependency and fixing a missed include in waterfallGlobalData.h. Removing Waterfall3DPlot. The qwt_plot3d is too much of a hassle to deal with and the plotting is not that stable even when it does work. This does not change the API.
2010-10-06Merge remote branch 'tom/qtfix' into maintJohnathan Corgan
* tom/qtfix: Finally, the simple fix for the qtgui issues; also, changed the naming scheme output from _moc to .moc files because I think this looks cleaner. Removing Waterfall3DPlot. The qwt_plot3d is too much of a hassle to deal with and the plotting is not that stable even when it does work. This does not change the API. Fixed gitignore to reflect changes in moc/ui file naming. Fixes a lot of warnings by cleaning up namespace issues. Finally, the simple fix for the qtgui issues; also, changed the naming scheme output from _moc to .moc files because I think this looks cleaner. Removing qwtplot3d dependency and fixing a missed include in waterfallGlobalData.h. Removing Waterfall3DPlot. The qwt_plot3d is too much of a hassle to deal with and the plotting is not that stable even when it does work. This does not change the API.