commit-gnuradio
[Top][All Lists]
Advanced

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

[Commit-gnuradio] git://gnuradio.org/jcorgan branch, wip/gr-blocks-maste


From: git version control
Subject: [Commit-gnuradio] git://gnuradio.org/jcorgan branch, wip/gr-blocks-master, updated. 3.6.1git-259-ga3b74a2
Date: Thu, 28 Jun 2012 16:50:50 +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/jcorgan".

The branch, wip/gr-blocks-master has been updated
       via  a3b74a25fcba67f61bf3cabb25286201f1263b0a (commit)
       via  9482c8986d0a7bd4772a78972880a9e574531052 (commit)
       via  c128e5aee66838c849ffc2ac45217ff1efab42e8 (commit)
       via  be1219b0623bbceb5bca6a6f6774f0669f52bdde (commit)
       via  3de0c77ed91e417c0b54972a78ffbad62f4bbb87 (commit)
      from  0b7655a76e5c73b8f5a8310909cf038f12cbb869 (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 a3b74a25fcba67f61bf3cabb25286201f1263b0a
Author: Johnathan Corgan <address@hidden>
Date:   Thu Jun 28 09:46:38 2012 -0700

    blocks: added gr::blocks::uchar_to_float

commit 9482c8986d0a7bd4772a78972880a9e574531052
Author: Johnathan Corgan <address@hidden>
Date:   Thu Jun 28 09:27:59 2012 -0700

    blocks: added gr::blocks::short_to_float

commit c128e5aee66838c849ffc2ac45217ff1efab42e8
Author: Johnathan Corgan <address@hidden>
Date:   Thu Jun 28 09:02:58 2012 -0700

    blocks: added gr::blocks::short_to_char

commit be1219b0623bbceb5bca6a6f6774f0669f52bdde
Author: Johnathan Corgan <address@hidden>
Date:   Wed Jun 27 06:50:22 2012 -0700

    blocks: added gr::blocks::interleaved_short_to_complex

commit 3de0c77ed91e417c0b54972a78ffbad62f4bbb87
Author: Johnathan Corgan <address@hidden>
Date:   Tue Jun 26 19:43:01 2012 -0700

    blocks: added gr::blocks::float_to_int

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

Summary of changes:
 gr-blocks/grc/blocks_block_tree.xml                |    9 ++-
 gr-blocks/grc/blocks_int_to_float.xml              |   35 ++++++++++
 .../grc/blocks_interleaved_short_to_complex.xml    |   20 ++++++
 gr-blocks/grc/blocks_short_to_char.xml             |   28 ++++++++
 gr-blocks/grc/blocks_short_to_float.xml            |   35 ++++++++++
 gr-blocks/grc/blocks_uchar_to_float.xml            |   20 ++++++
 gr-blocks/include/blocks/CMakeLists.txt            |    5 ++
 .../include/blocks/complex_to_interleaved_short.h  |    2 +-
 gr-blocks/include/blocks/int_to_float.h            |   62 +++++++++++++++++
 .../include/blocks/interleaved_short_to_complex.h  |   49 ++++++++++++++
 gr-blocks/include/blocks/short_to_char.h           |   51 ++++++++++++++
 gr-blocks/include/blocks/short_to_float.h          |   62 +++++++++++++++++
 gr-blocks/include/blocks/uchar_to_float.h          |   49 ++++++++++++++
 gr-blocks/lib/CMakeLists.txt                       |    7 ++
 gr-blocks/lib/int_to_float_impl.cc                 |   68 +++++++++++++++++++
 gr-blocks/lib/int_to_float_impl.h                  |   51 ++++++++++++++
 .../lib/interleaved_short_array_to_complex.cc      |   39 +++++++++++
 gr-blocks/lib/interleaved_short_array_to_complex.h |   36 ++++++++++
 gr-blocks/lib/interleaved_short_to_complex_impl.cc |   61 +++++++++++++++++
 gr-blocks/lib/interleaved_short_to_complex_impl.h  |   45 +++++++++++++
 gr-blocks/lib/short_to_char_impl.cc                |   69 +++++++++++++++++++
 gr-blocks/lib/short_to_char_impl.h                 |   47 +++++++++++++
 gr-blocks/lib/short_to_float_impl.cc               |   68 +++++++++++++++++++
 gr-blocks/lib/short_to_float_impl.h                |   51 ++++++++++++++
 gr-blocks/lib/uchar_array_to_float.cc              |   40 +++++++++++
 gr-blocks/lib/uchar_array_to_float.h               |   34 ++++++++++
 gr-blocks/lib/uchar_to_float_impl.cc               |   60 +++++++++++++++++
 gr-blocks/lib/uchar_to_float_impl.h                |   45 +++++++++++++
 gr-blocks/python/qa_type_conversions.py            |   70 ++++++++++++++++++++
 gr-blocks/swig/blocks_swig.i                       |   15 ++++
 30 files changed, 1230 insertions(+), 3 deletions(-)
 create mode 100644 gr-blocks/grc/blocks_int_to_float.xml
 create mode 100644 gr-blocks/grc/blocks_interleaved_short_to_complex.xml
 create mode 100644 gr-blocks/grc/blocks_short_to_char.xml
 create mode 100644 gr-blocks/grc/blocks_short_to_float.xml
 create mode 100644 gr-blocks/grc/blocks_uchar_to_float.xml
 create mode 100644 gr-blocks/include/blocks/int_to_float.h
 create mode 100644 gr-blocks/include/blocks/interleaved_short_to_complex.h
 create mode 100644 gr-blocks/include/blocks/short_to_char.h
 create mode 100644 gr-blocks/include/blocks/short_to_float.h
 create mode 100644 gr-blocks/include/blocks/uchar_to_float.h
 create mode 100644 gr-blocks/lib/int_to_float_impl.cc
 create mode 100644 gr-blocks/lib/int_to_float_impl.h
 create mode 100644 gr-blocks/lib/interleaved_short_array_to_complex.cc
 create mode 100644 gr-blocks/lib/interleaved_short_array_to_complex.h
 create mode 100644 gr-blocks/lib/interleaved_short_to_complex_impl.cc
 create mode 100644 gr-blocks/lib/interleaved_short_to_complex_impl.h
 create mode 100644 gr-blocks/lib/short_to_char_impl.cc
 create mode 100644 gr-blocks/lib/short_to_char_impl.h
 create mode 100644 gr-blocks/lib/short_to_float_impl.cc
 create mode 100644 gr-blocks/lib/short_to_float_impl.h
 create mode 100644 gr-blocks/lib/uchar_array_to_float.cc
 create mode 100644 gr-blocks/lib/uchar_array_to_float.h
 create mode 100644 gr-blocks/lib/uchar_to_float_impl.cc
 create mode 100644 gr-blocks/lib/uchar_to_float_impl.h


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



reply via email to

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