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


From: git version control
Subject: [Commit-gnuradio] git://gnuradio.org/gnuradio branch, next, updated. v3.6.3-562-gba015f5
Date: Sun, 3 Feb 2013 20:20:12 +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  ba015f5bd2e35ec5a47aea3c92dd83785e264cb9 (commit)
       via  3ef555e44ec43d4f3c5b611b84beed3f1660596a (commit)
       via  515393b2adf5d6b62f64a0bddd71e29b1eb6b59b (commit)
       via  0a3e219c0adb0aafcbf72e80c8f5bdc6b0c71aec (commit)
       via  8a620401a886f41367676e52b35c8c465fee8687 (commit)
       via  6062b4e0a4cdd13d971b5f3e89e005763ced0cdf (commit)
       via  8d498eb82adff0609a0b5c7b702c39dd022258d9 (commit)
      from  54c0f407b7045b821e03bbe95875590c3bea666b (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 ba015f5bd2e35ec5a47aea3c92dd83785e264cb9
Author: Tom Rondeau <address@hidden>
Date:   Sun Feb 3 15:16:37 2013 -0500

    qtgui: set default nconnections to 1 for time raster plots.

commit 3ef555e44ec43d4f3c5b611b84beed3f1660596a
Author: Tom Rondeau <address@hidden>
Date:   Sun Feb 3 15:15:18 2013 -0500

    qtgui: fixed intensity bar for time raster plots.

commit 515393b2adf5d6b62f64a0bddd71e29b1eb6b59b
Author: Tom Rondeau <address@hidden>
Date:   Sun Feb 3 14:18:23 2013 -0500

    qtgui: updated documentation in doxygen manual about qtgui plotters.

commit 0a3e219c0adb0aafcbf72e80c8f5bdc6b0c71aec
Author: Tom Rondeau <address@hidden>
Date:   Sun Feb 3 14:18:09 2013 -0500

    qtgui: adding QA code for time raster plot.

commit 8a620401a886f41367676e52b35c8c465fee8687
Author: Tom Rondeau <address@hidden>
Date:   Sun Feb 3 13:48:42 2013 -0500

    qtgui: added time raster GRC block to the block tree.

commit 6062b4e0a4cdd13d971b5f3e89e005763ced0cdf
Author: Tom Rondeau <address@hidden>
Date:   Sun Feb 3 13:48:07 2013 -0500

    qtgui: making sure all qtgui files have copyright notice.

commit 8d498eb82adff0609a0b5c7b702c39dd022258d9
Author: Tom Rondeau <address@hidden>
Date:   Sat Feb 2 16:27:00 2013 -0500

    qtgui: adding a time raster plot (support for bits and floats).

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

Summary of changes:
 gr-qtgui/doc/qtgui.dox                      |   45 +++-
 gr-qtgui/examples/pyqt_time_raster_b.py     |   85 +++++
 gr-qtgui/examples/pyqt_time_raster_f.py     |   85 +++++
 gr-qtgui/grc/qtgui_block_tree.xml           |    1 +
 gr-qtgui/grc/qtgui_time_raster_x.xml        |  106 ++++++
 gr-qtgui/include/qtgui/CMakeLists.txt       |    2 +
 gr-qtgui/include/qtgui/time_raster_sink_b.h |  100 ++++++
 gr-qtgui/include/qtgui/time_raster_sink_f.h |   97 +++++
 gr-qtgui/lib/CMakeLists.txt                 |   12 +
 gr-qtgui/lib/DisplayPlot.h                  |    2 +-
 gr-qtgui/lib/FrequencyDisplayPlot.cc        |    2 +-
 gr-qtgui/lib/FrequencyDisplayPlot.h         |    2 +-
 gr-qtgui/lib/SpectrumGUIClass.cc            |    2 +-
 gr-qtgui/lib/SpectrumGUIClass.h             |    2 +-
 gr-qtgui/lib/TimeRasterDisplayPlot.cc       |  503 +++++++++++++++++++++++++++
 gr-qtgui/lib/TimeRasterDisplayPlot.h        |   98 ++++++
 gr-qtgui/lib/plot_raster.cc                 |  340 ++++++++++++++++++
 gr-qtgui/lib/plot_raster.h                  |   92 +++++
 gr-qtgui/lib/plot_waterfall.cc              |   22 ++
 gr-qtgui/lib/plot_waterfall.h               |   22 ++
 gr-qtgui/lib/spectrumUpdateEvents.cc        |   66 ++++
 gr-qtgui/lib/spectrumUpdateEvents.h         |   49 +++
 gr-qtgui/lib/spectrumdisplayform.h          |    2 +-
 gr-qtgui/lib/timeRasterGlobalData.cc        |  252 ++++++++++++++
 gr-qtgui/lib/timeRasterGlobalData.h         |   81 +++++
 gr-qtgui/lib/time_raster_sink_b_impl.cc     |  332 ++++++++++++++++++
 gr-qtgui/lib/time_raster_sink_b_impl.h      |  104 ++++++
 gr-qtgui/lib/time_raster_sink_c_impl.cc     |  219 ++++++++++++
 gr-qtgui/lib/time_raster_sink_c_impl.h      |   87 +++++
 gr-qtgui/lib/time_raster_sink_f_impl.cc     |  326 +++++++++++++++++
 gr-qtgui/lib/time_raster_sink_f_impl.h      |  103 ++++++
 gr-qtgui/lib/timerasterdisplayform.cc       |  199 +++++++++++
 gr-qtgui/lib/timerasterdisplayform.h        |   81 +++++
 gr-qtgui/lib/waterfallGlobalData.cc         |   22 ++
 gr-qtgui/lib/waterfallGlobalData.h          |   22 ++
 gr-qtgui/python/qa_qtgui.py                 |    8 +
 gr-qtgui/swig/qtgui_swig.i                  |    6 +
 37 files changed, 3571 insertions(+), 8 deletions(-)
 create mode 100755 gr-qtgui/examples/pyqt_time_raster_b.py
 create mode 100755 gr-qtgui/examples/pyqt_time_raster_f.py
 create mode 100644 gr-qtgui/grc/qtgui_time_raster_x.xml
 create mode 100644 gr-qtgui/include/qtgui/time_raster_sink_b.h
 create mode 100644 gr-qtgui/include/qtgui/time_raster_sink_f.h
 create mode 100644 gr-qtgui/lib/TimeRasterDisplayPlot.cc
 create mode 100644 gr-qtgui/lib/TimeRasterDisplayPlot.h
 create mode 100644 gr-qtgui/lib/plot_raster.cc
 create mode 100644 gr-qtgui/lib/plot_raster.h
 create mode 100644 gr-qtgui/lib/timeRasterGlobalData.cc
 create mode 100644 gr-qtgui/lib/timeRasterGlobalData.h
 create mode 100644 gr-qtgui/lib/time_raster_sink_b_impl.cc
 create mode 100644 gr-qtgui/lib/time_raster_sink_b_impl.h
 create mode 100644 gr-qtgui/lib/time_raster_sink_c_impl.cc
 create mode 100644 gr-qtgui/lib/time_raster_sink_c_impl.h
 create mode 100644 gr-qtgui/lib/time_raster_sink_f_impl.cc
 create mode 100644 gr-qtgui/lib/time_raster_sink_f_impl.h
 create mode 100644 gr-qtgui/lib/timerasterdisplayform.cc
 create mode 100644 gr-qtgui/lib/timerasterdisplayform.h


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



reply via email to

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