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, next, updated. 3.6


From: git version control
Subject: [Commit-gnuradio] git://gnuradio.org/gnuradio branch, next, updated. 3.6.1git-58-g89f0add
Date: Mon, 30 Apr 2012 07:18:24 +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, next has been updated
       via  89f0add577f89c0cb1c3daea3abfc8167ed67478 (commit)
       via  d7ecbd12be995ad6db7a53a5d6dd3fcb205c07ea (commit)
       via  399969c8f9ad2ac19acd0f2299b0424dec2390b1 (commit)
       via  8613b52b42585f1f0f1ca73b778cd47ec2548292 (commit)
       via  d79054551fee36eda99a142aff2856f20b4787fa (commit)
      from  732bbf98e4d909d966032463b784fe024b405d87 (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 89f0add577f89c0cb1c3daea3abfc8167ed67478
Merge: 732bbf9 d7ecbd1
Author: Johnathan Corgan <address@hidden>
Date:   Mon Apr 30 00:15:53 2012 -0700

    Merge branch 'master' into next

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

Summary of changes:
 CMakeLists.txt                    |    1 +
 gr-fft/CMakeLists.txt             |  111 ++++++++++++
 gr-fft/doc/CMakeLists.txt         |   23 +++
 gr-fft/doc/README.fft             |   13 ++
 gr-fft/doc/fft.dox                |   29 +++
 gr-fft/gnuradio-fft.pc.in         |   11 ++
 gr-fft/grc/CMakeLists.txt         |   26 +++
 gr-fft/grc/fft_block_tree.xml     |   36 ++++
 gr-fft/grc/fft_vxx.xml            |   88 ++++++++++
 gr-fft/grc/goertzel_fc.xml        |   37 ++++
 gr-fft/include/fft/CMakeLists.txt |   33 ++++
 gr-fft/include/fft/api.h          |   33 ++++
 gr-fft/include/fft/fft.h          |  195 +++++++++++++++++++++
 gr-fft/include/fft/fft_vcc.h      |   57 ++++++
 gr-fft/include/fft/fft_vfc.h      |   57 ++++++
 gr-fft/include/fft/goertzel.h     |   64 +++++++
 gr-fft/include/fft/goertzel_fc.h  |   57 ++++++
 gr-fft/lib/CMakeLists.txt         |   59 +++++++
 gr-fft/lib/fft.cc                 |  338 +++++++++++++++++++++++++++++++++++++
 gr-fft/lib/fft_vcc_fftw.cc        |  147 ++++++++++++++++
 gr-fft/lib/fft_vcc_fftw.h         |   60 +++++++
 gr-fft/lib/fft_vfc_fftw.cc        |  124 ++++++++++++++
 gr-fft/lib/fft_vfc_fftw.h         |   59 +++++++
 gr-fft/lib/goertzel.cc            |   84 +++++++++
 gr-fft/lib/goertzel_fc_impl.cc    |   85 +++++++++
 gr-fft/lib/goertzel_fc_impl.h     |   60 +++++++
 gr-fft/python/CMakeLists.txt      |   47 +++++
 gr-fft/python/__init__.py         |   28 +++
 gr-fft/python/qa_fft.py           |  213 +++++++++++++++++++++++
 gr-fft/python/qa_goertzel.py      |   65 +++++++
 gr-fft/swig/CMakeLists.txt        |   51 ++++++
 gr-fft/swig/fft_swig.i            |   42 +++++
 32 files changed, 2333 insertions(+), 0 deletions(-)
 create mode 100644 gr-fft/CMakeLists.txt
 create mode 100644 gr-fft/doc/CMakeLists.txt
 create mode 100644 gr-fft/doc/README.fft
 create mode 100644 gr-fft/doc/fft.dox
 create mode 100644 gr-fft/gnuradio-fft.pc.in
 create mode 100644 gr-fft/grc/CMakeLists.txt
 create mode 100644 gr-fft/grc/fft_block_tree.xml
 create mode 100644 gr-fft/grc/fft_vxx.xml
 create mode 100644 gr-fft/grc/goertzel_fc.xml
 create mode 100644 gr-fft/include/fft/CMakeLists.txt
 create mode 100644 gr-fft/include/fft/api.h
 create mode 100644 gr-fft/include/fft/fft.h
 create mode 100644 gr-fft/include/fft/fft_vcc.h
 create mode 100644 gr-fft/include/fft/fft_vfc.h
 create mode 100644 gr-fft/include/fft/goertzel.h
 create mode 100644 gr-fft/include/fft/goertzel_fc.h
 create mode 100644 gr-fft/lib/CMakeLists.txt
 create mode 100644 gr-fft/lib/fft.cc
 create mode 100644 gr-fft/lib/fft_vcc_fftw.cc
 create mode 100644 gr-fft/lib/fft_vcc_fftw.h
 create mode 100644 gr-fft/lib/fft_vfc_fftw.cc
 create mode 100644 gr-fft/lib/fft_vfc_fftw.h
 create mode 100644 gr-fft/lib/goertzel.cc
 create mode 100644 gr-fft/lib/goertzel_fc_impl.cc
 create mode 100644 gr-fft/lib/goertzel_fc_impl.h
 create mode 100644 gr-fft/python/CMakeLists.txt
 create mode 100644 gr-fft/python/__init__.py
 create mode 100755 gr-fft/python/qa_fft.py
 create mode 100755 gr-fft/python/qa_goertzel.py
 create mode 100644 gr-fft/swig/CMakeLists.txt
 create mode 100644 gr-fft/swig/fft_swig.i


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



reply via email to

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