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.7.0-37-ga849ffb
Date: Tue, 16 Jul 2013 22:19:34 +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  a849ffb78c7e8c9970ec7e3ed30d1fccec60b5e3 (commit)
       via  af206bb5fc1a255b48dbab344a2bba7581535cb0 (commit)
       via  f0198da0bbf6af214b0d629cb77b8539ac42e02a (commit)
       via  7546939d17720cc086a3045ee33dda632383fdcf (commit)
       via  212e41e8500348e984dd15082c3727c12d19f20f (commit)
       via  7c0b10389a609115d8c01591f2c8945a10cd7c83 (commit)
       via  86eecfa37460080b8285395bb46baf90137e1b9e (commit)
       via  0cb377640f68f45840e3f0cb5b426e345f87974a (commit)
       via  5d23b8df58958708bea765678d4eba692a63c9b3 (commit)
      from  13175b4b80f367dc1c1ec413a6576b3e91c435a0 (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 -----------------------------------------------------------------
-----------------------------------------------------------------------

Summary of changes:
 docs/doxygen/other/ctrlport.dox                    |  145 +++++++++----
 docs/doxygen/other/main_page.dox                   |    3 +
 docs/doxygen/other/msg_passing.dox                 |  134 ++++++++----
 docs/doxygen/other/perf_counters.dox               |   97 +++++++++
 docs/doxygen/other/pfb_intro.dox                   |   63 ++++++
 docs/doxygen/other/stream_tags.dox                 |  224 +++++++++++++++++++
 .../include/gnuradio/rpcregisterhelpers.h          |   76 +++++++-
 gnuradio-runtime/lib/controlport/gnuradio.ice      |    6 +-
 .../lib/controlport/rpcpmtconverters_ice.cc        |   14 ++
 .../python/gnuradio/ctrlport/GrDataPlotter.py      |   19 +-
 .../python/gnuradio/ctrlport/gr-ctrlport-monitor   |   70 ++++---
 .../python/gnuradio/ctrlport/monitor.py            |    2 +-
 gr-blocks/grc/blocks_block_tree.xml                |    1 +
 gr-blocks/grc/blocks_ctrlport_probe2_c.xml         |   41 +++-
 gr-blocks/grc/blocks_ctrlport_probe2_x.xml         |  123 +++++++++++
 gr-blocks/include/gnuradio/blocks/CMakeLists.txt   |    4 +
 .../include/gnuradio/blocks/ctrlport_probe2_b.h    |   69 ++++++
 .../include/gnuradio/blocks/ctrlport_probe2_c.h    |    4 +-
 .../include/gnuradio/blocks/ctrlport_probe2_f.h    |   69 ++++++
 .../include/gnuradio/blocks/ctrlport_probe2_i.h    |   69 ++++++
 .../include/gnuradio/blocks/ctrlport_probe2_s.h    |   69 ++++++
 gr-blocks/lib/CMakeLists.txt                       |    4 +
 gr-blocks/lib/ctrlport_probe2_b_impl.cc            |  162 ++++++++++++++
 gr-blocks/lib/ctrlport_probe2_b_impl.h             |   69 ++++++
 gr-blocks/lib/ctrlport_probe2_c_impl.cc            |   16 +-
 gr-blocks/lib/ctrlport_probe2_c_impl.h             |    4 +-
 gr-blocks/lib/ctrlport_probe2_f_impl.cc            |  164 ++++++++++++++
 gr-blocks/lib/ctrlport_probe2_f_impl.h             |   69 ++++++
 gr-blocks/lib/ctrlport_probe2_i_impl.cc            |  163 ++++++++++++++
 gr-blocks/lib/ctrlport_probe2_i_impl.h             |   69 ++++++
 gr-blocks/lib/ctrlport_probe2_s_impl.cc            |  163 ++++++++++++++
 gr-blocks/lib/ctrlport_probe2_s_impl.h             |   69 ++++++
 gr-blocks/python/blocks/CMakeLists.txt             |    1 +
 gr-blocks/python/blocks/qa_ctrlport_probes.py      |  229 ++++++++++++++++++++
 gr-blocks/swig/blocks_swig0.i                      |   12 +
 .../include/gnuradio/digital/constellation.h       |   23 ++-
 grc/blocks/variable_constellation.xml              |   51 +++++
 grc/blocks/variable_constellation_rect.xml         |   69 ++++++
 38 files changed, 2491 insertions(+), 148 deletions(-)
 create mode 100644 docs/doxygen/other/perf_counters.dox
 create mode 100644 docs/doxygen/other/stream_tags.dox
 create mode 100644 gr-blocks/grc/blocks_ctrlport_probe2_x.xml
 create mode 100644 gr-blocks/include/gnuradio/blocks/ctrlport_probe2_b.h
 create mode 100644 gr-blocks/include/gnuradio/blocks/ctrlport_probe2_f.h
 create mode 100644 gr-blocks/include/gnuradio/blocks/ctrlport_probe2_i.h
 create mode 100644 gr-blocks/include/gnuradio/blocks/ctrlport_probe2_s.h
 create mode 100644 gr-blocks/lib/ctrlport_probe2_b_impl.cc
 create mode 100644 gr-blocks/lib/ctrlport_probe2_b_impl.h
 create mode 100644 gr-blocks/lib/ctrlport_probe2_f_impl.cc
 create mode 100644 gr-blocks/lib/ctrlport_probe2_f_impl.h
 create mode 100644 gr-blocks/lib/ctrlport_probe2_i_impl.cc
 create mode 100644 gr-blocks/lib/ctrlport_probe2_i_impl.h
 create mode 100644 gr-blocks/lib/ctrlport_probe2_s_impl.cc
 create mode 100644 gr-blocks/lib/ctrlport_probe2_s_impl.h
 create mode 100644 gr-blocks/python/blocks/qa_ctrlport_probes.py
 create mode 100644 grc/blocks/variable_constellation.xml
 create mode 100644 grc/blocks/variable_constellation_rect.xml


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



reply via email to

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