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. 3


From: git version control
Subject: [Commit-gnuradio] git://gnuradio.org/gnuradio branch, master, updated. 3.7.0git-117-g1a285a1
Date: Thu, 13 Jun 2013 20:29:26 +0000 (UTC)

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  1a285a1d8d8e00f8c135144eb137d1b5c81de586 (commit)
       via  a88527a9ca115cc135f0839da656b467123d8d9e (commit)
       via  ab08c7f7f5e72c10ce934ea6cb6ef2e1ebe01ce5 (commit)
       via  47ab3e90cd9d2a5a1932e56f10c794724ad0ce1d (commit)
       via  4c7192af4fb76de36bcce6a428d33ec8fbe1bd0e (commit)
       via  adf1aee4e54b38b88ea176a020107d5acd2b804d (commit)
       via  9f784053657f5158914d9fcbc752d7fbeb7932a2 (commit)
       via  b8720a7ba17132e70866f7b68c08e87f616859cb (commit)
      from  e7ea85fb752c330de2f29ca5e666a0727be0aa51 (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 1a285a1d8d8e00f8c135144eb137d1b5c81de586
Author: Tom Rondeau <address@hidden>
Date:   Thu Jun 13 16:28:42 2013 -0400

    digital: updated QA code for digital blocks that use the pfb resampler to 
account for the change in delay.

commit a88527a9ca115cc135f0839da656b467123d8d9e
Author: Tom Rondeau <address@hidden>
Date:   Sat Jun 8 09:42:21 2013 -0400

    runtime: put boost/format.hpp into logger.h to make it easily available for 
use with logger.

commit ab08c7f7f5e72c10ce934ea6cb6ef2e1ebe01ce5
Author: Tom Rondeau <address@hidden>
Date:   Fri Jun 7 19:17:08 2013 -0400

    docs: typos fixed.

commit 47ab3e90cd9d2a5a1932e56f10c794724ad0ce1d
Author: Tom Rondeau <address@hidden>
Date:   Thu Jun 13 13:32:22 2013 -0400

    filter: Updated PFB arbitrary resamplers (both ccf and fff) to use new 
kernel, created more accessors, and have them now calculating their own group 
delay and expected phase offset.
    
    QA code for resampler uses resamplers' delay and phase offset to set up 
expected offsets.

commit 4c7192af4fb76de36bcce6a428d33ec8fbe1bd0e
Author: Tom Rondeau <address@hidden>
Date:   Wed Jun 12 11:46:21 2013 -0400

    filter: fixed some minor issues with the PFB blocks (filter ordering and 
history so delay is calculated correctly).
    
    Also upated QA code to calculate the phase offset induced by the fiters for 
proper comparison.

commit adf1aee4e54b38b88ea176a020107d5acd2b804d
Author: Tom Rondeau <address@hidden>
Date:   Wed Jun 12 11:45:25 2013 -0400

    filter: fixed polyphase filterbank tap ordering.

commit 9f784053657f5158914d9fcbc752d7fbeb7932a2
Author: Tom Rondeau <address@hidden>
Date:   Mon Jun 10 12:23:41 2013 -0400

    filter: updated new kernel::pfb_arb_resampler_ccf to handle re-entry.
    
    Moved pfb_arb_resampler_ccf block to use the new kernel to clean up code 
and remove duplication.

commit b8720a7ba17132e70866f7b68c08e87f616859cb
Author: Tom Rondeau <address@hidden>
Date:   Fri Jun 7 19:15:27 2013 -0400

    filter: made stand-alone arbitrary resampling filter.
    
    Could be worked into pfb_arb_resampler work functions, but is not, yet.

-----------------------------------------------------------------------

Summary of changes:
 docs/doxygen/other/logger.dox                      |   36 +-
 gnuradio-runtime/include/gnuradio/logger.h.in      |    1 +
 gr-digital/python/digital/qa_mpsk_receiver.py      |   12 +-
 gr-digital/python/digital/qa_pfb_clock_sync.py     |    4 +-
 gr-filter/include/gnuradio/filter/CMakeLists.txt   |    1 +
 .../include/gnuradio/filter/pfb_arb_resampler.h    |  407 +++++++++++++++++
 .../gnuradio/filter/pfb_arb_resampler_ccf.h        |  102 ++---
 .../gnuradio/filter/pfb_arb_resampler_fff.h        |   36 ++-
 gr-filter/lib/CMakeLists.txt                       |    1 +
 gr-filter/lib/pfb_arb_resampler.cc                 |  461 ++++++++++++++++++++
 gr-filter/lib/pfb_arb_resampler_ccf_impl.cc        |  203 +++------
 gr-filter/lib/pfb_arb_resampler_ccf_impl.h         |   44 +--
 gr-filter/lib/pfb_arb_resampler_fff_impl.cc        |  205 +++------
 gr-filter/lib/pfb_arb_resampler_fff_impl.h         |   43 +--
 gr-filter/lib/pfb_channelizer_ccf_impl.cc          |    3 +
 gr-filter/lib/pfb_decimator_ccf_impl.cc            |    4 +-
 gr-filter/lib/pfb_interpolator_ccf_impl.cc         |    4 +-
 gr-filter/lib/polyphase_filterbank.cc              |    6 +-
 gr-filter/python/filter/qa_pfb_arb_resampler.py    |   49 ++-
 gr-filter/python/filter/qa_pfb_channelizer.py      |   25 +-
 gr-filter/python/filter/qa_pfb_decimator.py        |  111 +++---
 gr-filter/python/filter/qa_pfb_interpolator.py     |   18 +-
 22 files changed, 1255 insertions(+), 521 deletions(-)
 create mode 100644 gr-filter/include/gnuradio/filter/pfb_arb_resampler.h
 create mode 100644 gr-filter/lib/pfb_arb_resampler.cc


hooks/post-receive
-- 
git://gnuradio.org/gnuradio



reply via email to

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