commit-gnuradio
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Commit-gnuradio] git://gnuradio.org/gnuradio branch, master, updated. v


From: git repository hosting
Subject: [Commit-gnuradio] git://gnuradio.org/gnuradio branch, master, updated. v3.3.1git-85-g0734379
Date: Sat, 16 Oct 2010 22:36:26 +0100 (BST)

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, master has been updated
       via  07343791e5aecb6fb1f7b997b5d2aa98d96e4b97 (commit)
       via  80b84262f6fba7da08d888e73e8cb0e981a3a065 (commit)
       via  62042813aeeffeeb6091e229761c5068b5ed5cde (commit)
       via  72c9a5a158b0b18964c8f2f8f914f16060868146 (commit)
       via  e037d329ed2b80c655f7d5c0fcdcef8353b6c52f (commit)
       via  77f6fcffa4b63aed0cc5de87d2b8f7aff00ff2c8 (commit)
       via  2e633fc33dcbc3e1b5c35323ebe24373d57ea459 (commit)
       via  2ee1a94ff42a3d1858805bcce50b6aadb1773f47 (commit)
       via  0c6abf713755e4c7f705bad2e9f982d431b4286d (commit)
       via  06f92ca4200bbebd2ecb77f88b4524711f9292c4 (commit)
      from  d74b45e2b4b5ad5ed772fd452541c2ad7429c0db (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 07343791e5aecb6fb1f7b997b5d2aa98d96e4b97
Merge: d74b45e2b4b5ad5ed772fd452541c2ad7429c0db 
80b84262f6fba7da08d888e73e8cb0e981a3a065
Author: Tom Rondeau <address@hidden>
Date:   Sat Oct 16 17:03:59 2010 -0400

    Merge branch 'synfilt'

commit 80b84262f6fba7da08d888e73e8cb0e981a3a065
Author: Tom Rondeau <address@hidden>
Date:   Sat Oct 16 17:00:11 2010 -0400

    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.

commit 62042813aeeffeeb6091e229761c5068b5ed5cde
Author: Tom Rondeau <address@hidden>
Date:   Sat Oct 16 14:37:55 2010 -0400

    Adding QA code for fir filter with buffer.

commit 72c9a5a158b0b18964c8f2f8f914f16060868146
Author: Tom Rondeau <address@hidden>
Date:   Sat Oct 16 14:36:38 2010 -0400

    Cleaning up synthesis filter and using new FIR filter with buffer.

commit e037d329ed2b80c655f7d5c0fcdcef8353b6c52f
Author: Tom Rondeau <address@hidden>
Date:   Sat Oct 16 14:35:03 2010 -0400

    Cleaning up the new FIR filter implementation. Protects against some corner 
cases and adds filterN.

commit 77f6fcffa4b63aed0cc5de87d2b8f7aff00ff2c8
Author: Tom Rondeau <address@hidden>
Date:   Sat Oct 16 11:46:46 2010 -0400

    Adding a test example for the synthesis filter.

commit 2e633fc33dcbc3e1b5c35323ebe24373d57ea459
Author: Tom Rondeau <address@hidden>
Date:   Sat Oct 16 11:13:53 2010 -0400

    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.
    
    The synthesis filter is being updated to use the new FIR implementation.

commit 2ee1a94ff42a3d1858805bcce50b6aadb1773f47
Author: Tom Rondeau <address@hidden>
Date:   Sun May 16 14:39:53 2010 -0400

    Can now set more channels than input signals. Empty channels are 
established as the outtermost channels (around fs/2 and -fs/2).

commit 0c6abf713755e4c7f705bad2e9f982d431b4286d
Author: Tom Rondeau <address@hidden>
Date:   Tue Apr 27 22:17:44 2010 -0400

    Fixing ordering so that the input channels line up in the output signal 
properly.

commit 06f92ca4200bbebd2ecb77f88b4524711f9292c4
Author: Tom Rondeau <address@hidden>
Date:   Tue Apr 27 22:05:15 2010 -0400

    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:
 gnuradio-core/src/lib/filter/Makefile.am           |   13 ++-
 gnuradio-core/src/lib/filter/filter.i              |    2 +
 .../lib/filter/gr_pfb_synthesis_filterbank_ccf.cc  |  169 ++++++++++++++++++++
 .../lib/filter/gr_pfb_synthesis_filterbank_ccf.h   |   98 +++++++++++
 ...tor_ccf.i => gr_pfb_synthesis_filterbank_ccf.i} |   17 +-
 .../lib/filter/gri_fir_filter_with_buffer_ccf.cc   |   71 ++++++++
 ...ir_XXX.h.t => gri_fir_filter_with_buffer_ccf.h} |   58 ++++---
 gnuradio-core/src/lib/filter/qa_filter.cc          |    2 +
 ...ccf.cc => qa_gri_fir_filter_with_buffer_ccf.cc} |   86 +++-------
 ...r_ccf.h => qa_gri_fir_filter_with_buffer_ccf.h} |   12 +-
 gnuradio-examples/python/pfb/synth_filter.py       |   71 ++++++++
 gnuradio-examples/python/pfb/synth_to_chan.py      |  105 ++++++++++++
 12 files changed, 601 insertions(+), 103 deletions(-)
 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
 copy gnuradio-core/src/lib/filter/{gr_pfb_interpolator_ccf.i => 
gr_pfb_synthesis_filterbank_ccf.i} (65%)
 create mode 100644 
gnuradio-core/src/lib/filter/gri_fir_filter_with_buffer_ccf.cc
 copy gnuradio-core/src/lib/filter/{gr_fir_XXX.h.t => 
gri_fir_filter_with_buffer_ccf.h} (64%)
 copy gnuradio-core/src/lib/filter/{qa_gr_fir_ccf.cc => 
qa_gri_fir_filter_with_buffer_ccf.cc} (71%)
 copy gnuradio-core/src/lib/filter/{qa_gr_fir_ccf.h => 
qa_gri_fir_filter_with_buffer_ccf.h} (75%)
 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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]