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 version control
Subject: [Commit-gnuradio] git://gnuradio.org/gnuradio branch, master, updated. v3.4.1-20-gf3f2885
Date: Tue, 4 Oct 2011 18:12:05 +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  f3f2885ac08704910592b9091b6817aa71599003 (commit)
       via  f2a11d98f65f245410190ee2f7cabff12e58a696 (commit)
       via  dfda3abece86bd3ba4ad51214726827cbc705c30 (commit)
       via  b205e8cda30fb3a20e2d0d0409c12e58417d92f3 (commit)
       via  1dcc69dbebd9fac1b7277657223369e3e9b19b7b (commit)
       via  ee61647bf27e252c48cd32580eacb47f56d1f377 (commit)
       via  8743a23066d779dbfbd6d93467cd9cd36fd00e01 (commit)
      from  cb23b7a23ca8a1b1331e3d70e97425b1d52b2222 (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 f3f2885ac08704910592b9091b6817aa71599003
Merge: cb23b7a f2a11d9
Author: Tom Rondeau <address@hidden>
Date:   Tue Oct 4 14:12:05 2011 -0400

    Merge branch 'shd'

commit f2a11d98f65f245410190ee2f7cabff12e58a696
Author: Tom Rondeau <address@hidden>
Date:   Tue Oct 4 13:34:24 2011 -0400

    shd: Changed version requirements for libshd.

commit dfda3abece86bd3ba4ad51214726827cbc705c30
Author: Tom Rondeau <address@hidden>
Date:   Tue Oct 4 12:58:50 2011 -0400

    shd: changed name from xmini to smini in GR interface; needs to be matched 
in the s-mini firmware.

commit b205e8cda30fb3a20e2d0d0409c12e58417d92f3
Author: Tom Rondeau <address@hidden>
Date:   Tue Oct 4 12:56:09 2011 -0400

    shd: changed gr-shd names from xmini to smini

commit 1dcc69dbebd9fac1b7277657223369e3e9b19b7b
Author: Tom Rondeau <address@hidden>
Date:   Mon Sep 12 14:28:10 2011 -0400

    shd: adding a very rudimentary siggen application to test gr-shd tx driver.

commit ee61647bf27e252c48cd32580eacb47f56d1f377
Author: Tom Rondeau <address@hidden>
Date:   Mon Sep 12 14:27:44 2011 -0400

    shd: fixing up SHD examples.

commit 8743a23066d779dbfbd6d93467cd9cd36fd00e01
Author: Tom Rondeau <address@hidden>
Date:   Tue Sep 6 18:18:11 2011 -0400

    shd: adding a component gr-shd as an interface to the Symplex Hardware 
X-Mini system. Mostly cribbed from gr-uhd.

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

Summary of changes:
 config/grc_gr_shd.m4                               |   59 ++++
 configure.ac                                       |    1 +
 {gr-audio => gr-shd}/.gitignore                    |    0
 gr-shd/Makefile.am                                 |   31 ++
 {gr-uhd => gr-shd}/apps/.gitignore                 |    0
 gr-shd/apps/Makefile.am                            |   32 ++
 gr-shd/apps/shd_fft.py                             |  280 ++++++++++++++++++
 gr-shd/apps/shd_rx_cfile.py                        |  152 ++++++++++
 gr-shd/apps/shd_siggen.py                          |  120 ++++++++
 gr-shd/gnuradio-shd.pc.in                          |   11 +
 gr-shd/grc/.gitignore                              |    3 +
 gr-shd/grc/Makefile.am                             |   43 +++
 gr-shd/grc/gen_shd_smini_blocks.py                 |  297 +++++++++++++++++++
 gr-shd/grc/shd_block_tree.xml                      |   14 +
 {gcell/include/gcell => gr-shd/include}/.gitignore |    0
 gr-shd/include/Makefile.am                         |   27 ++
 gr-shd/include/gr_shd_api.h                        |   33 +++
 gr-shd/include/gr_shd_smini_sink.h                 |  282 ++++++++++++++++++
 gr-shd/include/gr_shd_smini_source.h               |  286 +++++++++++++++++++
 {gcell/include/gcell => gr-shd/lib}/.gitignore     |    0
 gr-shd/lib/Makefile.am                             |   42 +++
 gr-shd/lib/gr_shd_smini_sink.cc                    |  276 ++++++++++++++++++
 gr-shd/lib/gr_shd_smini_source.cc                  |  299 ++++++++++++++++++++
 gr-shd/swig/.gitignore                             |    8 +
 gr-shd/swig/Makefile.am                            |   82 ++++++
 gr-shd/swig/Makefile.swig.gen                      |  145 ++++++++++
 gr-shd/swig/__init__.py                            |   88 ++++++
 gr-shd/swig/gnuradio/.gitignore                    |    2 +
 gr-shd/swig/gnuradio/shd.scm                       |   27 ++
 gr-shd/swig/qa_shd.py                              |   40 +++
 .../swig/run_guile_tests.in                        |    0
 gr-shd/swig/run_tests.in                           |   10 +
 gr-shd/swig/shd.test                               |   37 +++
 gr-shd/swig/shd_swig.i                             |  135 +++++++++
 34 files changed, 2862 insertions(+), 0 deletions(-)
 create mode 100644 config/grc_gr_shd.m4
 copy {gr-audio => gr-shd}/.gitignore (100%)
 create mode 100644 gr-shd/Makefile.am
 copy {gr-uhd => gr-shd}/apps/.gitignore (100%)
 create mode 100644 gr-shd/apps/Makefile.am
 create mode 100755 gr-shd/apps/shd_fft.py
 create mode 100755 gr-shd/apps/shd_rx_cfile.py
 create mode 100755 gr-shd/apps/shd_siggen.py
 create mode 100644 gr-shd/gnuradio-shd.pc.in
 create mode 100644 gr-shd/grc/.gitignore
 create mode 100644 gr-shd/grc/Makefile.am
 create mode 100644 gr-shd/grc/gen_shd_smini_blocks.py
 create mode 100644 gr-shd/grc/shd_block_tree.xml
 copy {gcell/include/gcell => gr-shd/include}/.gitignore (100%)
 create mode 100644 gr-shd/include/Makefile.am
 create mode 100644 gr-shd/include/gr_shd_api.h
 create mode 100644 gr-shd/include/gr_shd_smini_sink.h
 create mode 100644 gr-shd/include/gr_shd_smini_source.h
 copy {gcell/include/gcell => gr-shd/lib}/.gitignore (100%)
 create mode 100644 gr-shd/lib/Makefile.am
 create mode 100644 gr-shd/lib/gr_shd_smini_sink.cc
 create mode 100644 gr-shd/lib/gr_shd_smini_source.cc
 create mode 100644 gr-shd/swig/.gitignore
 create mode 100644 gr-shd/swig/Makefile.am
 create mode 100644 gr-shd/swig/Makefile.swig.gen
 create mode 100644 gr-shd/swig/__init__.py
 create mode 100644 gr-shd/swig/gnuradio/.gitignore
 create mode 100644 gr-shd/swig/gnuradio/shd.scm
 create mode 100755 gr-shd/swig/qa_shd.py
 copy {gr-howto-write-a-block => gr-shd}/swig/run_guile_tests.in (100%)
 create mode 100644 gr-shd/swig/run_tests.in
 create mode 100644 gr-shd/swig/shd.test
 create mode 100644 gr-shd/swig/shd_swig.i


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



reply via email to

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