[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-218-g53eee1c |
Date: |
Sun, 7 Nov 2010 20:34:59 +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 53eee1c624794056fcba50a5eb50b864cbf159dd (commit)
via 1fa9a8ea31115b878bff48d2259fc72d1a37b52c (commit)
via 1d63a52520ebdac7242784eafa79093b7fc2710d (commit)
via 0b9812f61b854591ec7b0f77214c3078bd5c3464 (commit)
via dd74b98a42f5e79c4d464cfa745b3f8af51e486e (commit)
via b03f921273423dddc5c8b76d6ab0cfcfe80123a3 (commit)
via 9810ae784492ca23cce40cdd0cc3ca83eb5f5aef (commit)
via 740d8974427d25f1bd4e4e045fc6f0a101cea9eb (commit)
via b9cbe9c9ca65b620cab9bf1b8e652637a885d3c2 (commit)
via 4a3fb7eb7481177ae35bb98307a1845a7304d97e (commit)
via eb7316ea486ab774c24cba1142a785080559e579 (commit)
via 07343791e5aecb6fb1f7b997b5d2aa98d96e4b97 (commit)
via 80b84262f6fba7da08d888e73e8cb0e981a3a065 (commit)
via 62042813aeeffeeb6091e229761c5068b5ed5cde (commit)
via 72c9a5a158b0b18964c8f2f8f914f16060868146 (commit)
via e037d329ed2b80c655f7d5c0fcdcef8353b6c52f (commit)
via 77f6fcffa4b63aed0cc5de87d2b8f7aff00ff2c8 (commit)
via 2e633fc33dcbc3e1b5c35323ebe24373d57ea459 (commit)
via cb2fa9a58c9a52f3501881964ee4f59992c5d84d (commit)
via 2ee1a94ff42a3d1858805bcce50b6aadb1773f47 (commit)
via 0c6abf713755e4c7f705bad2e9f982d431b4286d (commit)
via 06f92ca4200bbebd2ecb77f88b4524711f9292c4 (commit)
from 2aef04843d248d0584b4865c62d7ca0772113dc9 (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 53eee1c624794056fcba50a5eb50b864cbf159dd
Merge: 2aef04843d248d0584b4865c62d7ca0772113dc9
1fa9a8ea31115b878bff48d2259fc72d1a37b52c
Author: Tom Rondeau <address@hidden>
Date: Sun Nov 7 15:21:11 2010 -0500
Merge branch 'master' into next
* master:
Sneaking in a few warning fixes to this branch.
Adding ability for FIR filter with internal buffer to decimate.
Adds a new parameter "y_axis_label" to scopesink2 and the GRC .xml file
that contains the string for the Y axis label. It defaults to 'Counts' to be
consistent with the old version.
Adding ccf version of fir filter to gitignore.
Removing nonexistent gri .i file from Makefile. Got a bit carried away
with the copy/paste.
Removing ccf version of filter that is now autogenerated.
Fixing up filters a bit to pass QA tests for all versions.
Fixes Makefile for fir filter generators.
Using generators to make gri_fir_filter_with_buffer_XXX into all possible
in/out/tap types we support.
Work on examples for the synthesize filterbank block. The cleans up the
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.
Adding QA code for fir filter with buffer.
Cleaning up synthesis filter and using new FIR filter with buffer.
Cleaning up the new FIR filter implementation. Protects against some
corner cases and adds filterN.
Adding a test example for the synthesis filter.
Adding a FIR filter implemented with its own internal buffer. This one
keeps its own delay line and just takes in input samples instead of a pointer
to an external buffer.
rearrange includes to always be: internal GR, external, with GR.
Can now set more channels than input signals. Empty channels are
established as the outtermost channels (around fs/2 and -fs/2).
Fixing ordering so that the input channels line up in the output signal
properly.
Adding the synthesis filterbank (the opposite of the channelizer). It's
ugly right now and uses a lot of memory to handle the buffers for each
filter/input stream.
-----------------------------------------------------------------------
Summary of changes:
Makefile.common | 4 +-
gcell/lib/runtime/Makefile.am | 4 +-
gnuradio-core/src/lib/filter/.gitignore | 12 ++
gnuradio-core/src/lib/filter/Makefile.am | 27 +++-
gnuradio-core/src/lib/filter/Makefile.gen | 17 ++-
gnuradio-core/src/lib/filter/filter.i | 2 +
gnuradio-core/src/lib/filter/generate_all.py | 2 +
.../generate_gri_fir_filter_with_buffer_XXX.py | 64 ++++++++
.../src/lib/filter/gr_pfb_channelizer_ccf.cc | 1 -
.../lib/filter/gr_pfb_synthesis_filterbank_ccf.cc | 169 ++++++++++++++++++++
.../lib/filter/gr_pfb_synthesis_filterbank_ccf.h | 98 +++++++++++
.../lib/filter/gr_pfb_synthesis_filterbank_ccf.i | 38 +++++
.../lib/filter/gri_fir_filter_with_buffer_XXX.cc.t | 121 ++++++++++++++
.../lib/filter/gri_fir_filter_with_buffer_XXX.h.t | 131 +++++++++++++++
.../lib/filter/gri_fir_filter_with_buffer_ccf.h | 131 +++++++++++++++
gnuradio-core/src/lib/filter/qa_filter.cc | 12 ++
.../filter/qa_gri_fir_filter_with_buffer_ccc.cc | 160 ++++++++++++++++++
.../lib/filter/qa_gri_fir_filter_with_buffer_ccc.h | 46 ++++++
.../filter/qa_gri_fir_filter_with_buffer_ccf.cc | 167 +++++++++++++++++++
.../lib/filter/qa_gri_fir_filter_with_buffer_ccf.h | 46 ++++++
.../filter/qa_gri_fir_filter_with_buffer_fcc.cc | 168 +++++++++++++++++++
.../lib/filter/qa_gri_fir_filter_with_buffer_fcc.h | 46 ++++++
.../filter/qa_gri_fir_filter_with_buffer_fff.cc | 156 ++++++++++++++++++
.../lib/filter/qa_gri_fir_filter_with_buffer_fff.h | 46 ++++++
.../filter/qa_gri_fir_filter_with_buffer_fsf.cc | 147 +++++++++++++++++
.../lib/filter/qa_gri_fir_filter_with_buffer_fsf.h | 46 ++++++
.../filter/qa_gri_fir_filter_with_buffer_scc.cc | 167 +++++++++++++++++++
.../lib/filter/qa_gri_fir_filter_with_buffer_scc.h | 46 ++++++
.../src/lib/general/gr_fll_band_edge_cc.cc | 5 +-
gnuradio-core/src/lib/runtime/Makefile.am | 4 +-
gnuradio-core/src/lib/swig/Makefile.am | 4 +-
gnuradio-examples/c++/dial_tone/Makefile.am | 9 +-
gnuradio-examples/python/pfb/synth_filter.py | 71 ++++++++
gnuradio-examples/python/pfb/synth_to_chan.py | 105 ++++++++++++
gr-gcell/src/Makefile.am | 4 +-
gr-noaa/swig/Makefile.am | 6 +-
gr-pager/swig/Makefile.am | 6 +-
gr-qtgui/src/lib/Makefile.am | 4 +-
gr-usrp/apps/Makefile.am | 15 +-
gr-usrp/src/Makefile.am | 4 +-
gr-usrp2/src/Makefile.am | 6 +-
gr-wxgui/src/python/constants.py | 1 +
gr-wxgui/src/python/scope_window.py | 4 +-
gr-wxgui/src/python/scopesink_gl.py | 2 +
grc/blocks/wxgui_scopesink2.xml | 7 +
gruel/src/lib/Makefile.am | 4 +-
gruel/src/lib/msg/Makefile.am | 5 +-
gruel/src/lib/pmt/Makefile.am | 6 +-
usrp/host/lib/Makefile.am | 2 +-
usrp/host/swig/Makefile.am | 4 +-
usrp2/host/apps/Makefile.am | 6 +-
usrp2/host/lib/Makefile.am | 6 +-
52 files changed, 2304 insertions(+), 60 deletions(-)
create mode 100755
gnuradio-core/src/lib/filter/generate_gri_fir_filter_with_buffer_XXX.py
create mode 100644
gnuradio-core/src/lib/filter/gr_pfb_synthesis_filterbank_ccf.cc
create mode 100644
gnuradio-core/src/lib/filter/gr_pfb_synthesis_filterbank_ccf.h
create mode 100644
gnuradio-core/src/lib/filter/gr_pfb_synthesis_filterbank_ccf.i
create mode 100644
gnuradio-core/src/lib/filter/gri_fir_filter_with_buffer_XXX.cc.t
create mode 100644
gnuradio-core/src/lib/filter/gri_fir_filter_with_buffer_XXX.h.t
create mode 100644
gnuradio-core/src/lib/filter/gri_fir_filter_with_buffer_ccf.h
create mode 100644
gnuradio-core/src/lib/filter/qa_gri_fir_filter_with_buffer_ccc.cc
create mode 100644
gnuradio-core/src/lib/filter/qa_gri_fir_filter_with_buffer_ccc.h
create mode 100644
gnuradio-core/src/lib/filter/qa_gri_fir_filter_with_buffer_ccf.cc
create mode 100644
gnuradio-core/src/lib/filter/qa_gri_fir_filter_with_buffer_ccf.h
create mode 100644
gnuradio-core/src/lib/filter/qa_gri_fir_filter_with_buffer_fcc.cc
create mode 100644
gnuradio-core/src/lib/filter/qa_gri_fir_filter_with_buffer_fcc.h
create mode 100644
gnuradio-core/src/lib/filter/qa_gri_fir_filter_with_buffer_fff.cc
create mode 100644
gnuradio-core/src/lib/filter/qa_gri_fir_filter_with_buffer_fff.h
create mode 100644
gnuradio-core/src/lib/filter/qa_gri_fir_filter_with_buffer_fsf.cc
create mode 100644
gnuradio-core/src/lib/filter/qa_gri_fir_filter_with_buffer_fsf.h
create mode 100644
gnuradio-core/src/lib/filter/qa_gri_fir_filter_with_buffer_scc.cc
create mode 100644
gnuradio-core/src/lib/filter/qa_gri_fir_filter_with_buffer_scc.h
create mode 100755 gnuradio-examples/python/pfb/synth_filter.py
create mode 100755 gnuradio-examples/python/pfb/synth_to_chan.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-218-g53eee1c,
git repository hosting <=