[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Commit-gnuradio] git://gnuradio.org/gnuradio branch, next, updated. v3.
From: |
git repository hosting |
Subject: |
[Commit-gnuradio] git://gnuradio.org/gnuradio branch, next, updated. v3.3.1git-347-ge13783a |
Date: |
Tue, 7 Dec 2010 02:13:03 +0000 (GMT) |
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "git://gnuradio.org/gnuradio".
The branch, next has been updated
via e13783aeb84a2c3656c3344a8d52fa2c9ee38a00 (commit)
via 7b19372f83fede6a1d55e4b70202aa58b004e9f8 (commit)
via 6246efbefcdb6807daa7c245ebe7a975ab0ce7d4 (commit)
via dd656e9db5e69ed6b11653deea710e299d72827e (commit)
via 522073fa95ffcb231bf8c72105bc5cc62dd8d9ed (commit)
via d7f501f61362652030ccfcb740dbb03b33f4689e (commit)
via e5198a304a12410da8936a16900feba2fad1edae (commit)
via ed307f12857545b5c034532e261b6ac2dadcf5fe (commit)
via 88c83cf6e9374f2cbd5483798a0614d72fb3dcbd (commit)
via e90e0af122570193a3daecb1a4b4ef45dae3c83c (commit)
via 67782265f5c9d5e29eb4921d14114346e80bfa81 (commit)
via 696684176317d555ac4a603212bca1bafc768aec (commit)
via 9922d3553e4e3ec6d55cfe8b7aab9323f649247f (commit)
via ff6ce4dcf7c602cd94f840de21034634c95af806 (commit)
via a72819e861caaabdea0ac41f5f5e387cb61d3513 (commit)
via 5d1baa5a96e3dac0756571da9fc115dba14bbbff (commit)
via 6fc05897572c82ebb523d0ab0ac4cf763d00cb4a (commit)
via 9eeb6dbaa1398946229db780f2eb1ca4e9eae04b (commit)
via ee02e4e66a291685ce6399d7871b98ffccbdca54 (commit)
via 8e64eed7ed9680db139a84e2370135cf619534bf (commit)
via d46b800b882724c07975f1dc897f8166d45150fb (commit)
via a45a71005ba215673da78fabc0edae323eebed34 (commit)
via a8e0d810000c080e2ea966bc967fd0c6d21da61d (commit)
from cdca1c917626f7c63f820da921a17187efc92cd5 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit e13783aeb84a2c3656c3344a8d52fa2c9ee38a00
Merge: cdca1c917626f7c63f820da921a17187efc92cd5
7b19372f83fede6a1d55e4b70202aa58b004e9f8
Author: Tom Rondeau <address@hidden>
Date: Mon Dec 6 20:57:40 2010 -0500
Merge branch 'master' into next
* 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
-----------------------------------------------------------------------
Summary of changes:
config/usrp_libusb.m4 | 168 +++++++++++++-------
.../src/lib/filter/gr_pfb_arb_resampler_ccf.cc | 11 +-
.../src/lib/filter/gr_pfb_interpolator_ccf.cc | 2 +-
gnuradio-core/src/lib/filter/gr_sincos.c | 4 +-
gnuradio-core/src/lib/filter/gr_single_pole_iir.h | 6 +-
gnuradio-core/src/lib/general/gr_circular_file.cc | 7 +-
.../src/lib/general/gr_float_to_complex.cc | 4 +-
gnuradio-core/src/lib/general/gr_skiphead.cc | 8 +-
gnuradio-core/src/lib/general/gr_skiphead.h | 10 +-
gnuradio-core/src/lib/general/gr_skiphead.i | 8 +-
gnuradio-core/src/lib/gengen/gr_add_XX.cc.t | 2 +-
gnuradio-core/src/lib/gengen/gr_divide_XX.cc.t | 4 +-
gnuradio-core/src/lib/gengen/gr_multiply_XX.cc.t | 2 +-
gnuradio-core/src/lib/gengen/gr_sub_XX.cc.t | 4 +-
gnuradio-core/src/lib/runtime/gr_preferences.cc | 24 +++-
gnuradio-core/src/lib/swig/gnuradio.i | 3 +-
.../python/gnuradio/blks2impl/pfb_arb_resampler.py | 11 +-
gnuradio-examples/python/pfb/resampler.py | 95 +++++++++++
gr-audio-jack/src/audio_jack_sink.cc | 13 +-
gr-audio-jack/src/audio_jack_source.cc | 7 +-
gr-audio-portaudio/src/audio_portaudio_sink.cc | 5 +-
gr-audio-portaudio/src/audio_portaudio_source.cc | 5 +-
gr-msdd6000/src/msdd_rs_source_simple.cc | 5 +-
gr-msdd6000/src/msdd_source_simple.cc | 4 +-
gr-trellis/src/lib/fsm.cc | 20 ++-
gr-trellis/src/lib/interleaver.cc | 13 ++-
usrp/doc/Doxyfile.in | 67 ++++-----
27 files changed, 359 insertions(+), 153 deletions(-)
create mode 100755 gnuradio-examples/python/pfb/resampler.py
hooks/post-receive
--
git://gnuradio.org/gnuradio
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Commit-gnuradio] git://gnuradio.org/gnuradio branch, next, updated. v3.3.1git-347-ge13783a,
git repository hosting <=