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-88-gee4c42a
Date: Fri, 2 Aug 2013 20:58: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, master has been updated
       via  ee4c42a21c0ae9852acecaccede08e3bb8696429 (commit)
       via  bd043f9c74d32a63e42547c023c68abe2f1d5e2b (commit)
       via  1f03cbc66bc5b60a9997e78be349e259ea739114 (commit)
       via  e1d5c4e1ce1de070fcb3e19b7e046186ed346a9d (commit)
       via  f6a1e39fe3fca5b50ea664ad2055e37045ee6bef (commit)
       via  0a5c5d55040f6a6812db2f9c8d62b36838b70a91 (commit)
      from  179a2d78ce2f439f078a5564cff66d9f0424f34b (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 ee4c42a21c0ae9852acecaccede08e3bb8696429
Author: Tom Rondeau <address@hidden>
Date:   Fri Aug 2 16:57:46 2013 -0400

    channels: updated quantization demo for new histogram constructor.

commit bd043f9c74d32a63e42547c023c68abe2f1d5e2b
Author: Tom Rondeau <address@hidden>
Date:   Fri Aug 2 16:54:16 2013 -0400

    qtgui: improved handling of scale in histogram plots.
    
    Mouse scroll zooms in/out horizonatally. Added auto-scale feature, can set 
x-min and max in constructor.
    
    Mouse scroll in constellation plot now does both axes at the same time.

commit 1f03cbc66bc5b60a9997e78be349e259ea739114
Author: Tom Rondeau <address@hidden>
Date:   Fri Aug 2 15:00:28 2013 -0400

    docs: added more documentation to the channel models page explaining the 
diffenerent models available.
    
    Includes discussion of the new HW impairments model that is Pytho-only.

commit e1d5c4e1ce1de070fcb3e19b7e046186ed346a9d
Author: Tom Rondeau <address@hidden>
Date:   Fri Aug 2 13:31:44 2013 -0400

    channels: using new qtgui histogram sink in quantization demo.

commit f6a1e39fe3fca5b50ea664ad2055e37045ee6bef
Author: Tom Rondeau <address@hidden>
Date:   Fri Aug 2 13:30:38 2013 -0400

    qtgui: Added histogram sink.

commit 0a5c5d55040f6a6812db2f9c8d62b36838b70a91
Author: Tom Rondeau <address@hidden>
Date:   Thu Aug 1 15:12:19 2013 -0400

    channels: Added the hardware impairments modeling tools from Matt Ettus' 
GRCon11 talk.
    
    Python blocks part of the gr.channel module.
    
    Examples are in gr-channels/examples (demo_gmsk, demo_qam, demo_ofdm, and 
others).

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

Summary of changes:
 gr-channels/CMakeLists.txt                         |    4 +-
 gr-channels/doc/channels.dox                       |  110 ++
 gr-channels/examples/CMakeLists.txt                |   33 +
 gr-channels/examples/demo_gmsk.grc                 |  894 +++++++++++++
 gr-channels/examples/demo_ofdm.grc                 | 1410 ++++++++++++++++++++
 gr-channels/examples/demo_qam.grc                  | 1048 +++++++++++++++
 gr-channels/examples/demo_quantization.grc         |  958 +++++++++++++
 gr-channels/examples/demo_spec_an.grc              | 1087 +++++++++++++++
 gr-channels/examples/demo_two_tone.grc             | 1190 +++++++++++++++++
 gr-channels/grc/CMakeLists.txt                     |   12 +-
 gr-channels/grc/channels_amp_bal.xml               |   27 +
 gr-channels/grc/channels_block_tree.xml            |   11 +
 gr-channels/grc/channels_conj_fs_iqcorr.xml        |   34 +
 gr-channels/grc/channels_distortion_2_gen.xml      |   27 +
 gr-channels/grc/channels_distortion_3_gen.xml      |   27 +
 gr-channels/grc/channels_impairments.xml           |   76 ++
 gr-channels/grc/channels_iqbal_gen.xml             |   34 +
 gr-channels/grc/channels_phase_bal.xml             |   27 +
 gr-channels/grc/channels_phase_noise_gen.xml       |   34 +
 gr-channels/grc/channels_quantizer.xml             |   27 +
 .../include/gnuradio/channels/fading_model.h       |   10 +-
 .../gnuradio/channels/selective_fading_model.h     |   16 +-
 gr-channels/python/channels/CMakeLists.txt         |   11 +-
 gr-channels/python/channels/__init__.py            |   13 +-
 gr-channels/python/channels/amp_bal.py             |   63 +
 gr-channels/python/channels/conj_fs_iqcorr.py      |   65 +
 gr-channels/python/channels/distortion_2_gen.py    |   63 +
 gr-channels/python/channels/distortion_3_gen.py    |   61 +
 gr-channels/python/channels/impairments.py         |  129 ++
 gr-channels/python/channels/iqbal_gen.py           |   67 +
 gr-channels/python/channels/phase_bal.py           |   76 ++
 gr-channels/python/channels/phase_noise_gen.py     |   69 +
 gr-channels/python/channels/quantizer.py           |   54 +
 gr-qtgui/grc/qtgui_block_tree.xml                  |    3 +-
 gr-qtgui/grc/qtgui_histogram_sink_x.xml            |   91 ++
 gr-qtgui/include/gnuradio/qtgui/CMakeLists.txt     |    3 +
 gr-qtgui/include/gnuradio/qtgui/DisplayPlot.h      |   29 +-
 .../include/gnuradio/qtgui/HistogramDisplayPlot.h  |   74 +
 gr-qtgui/include/gnuradio/qtgui/displayform.h      |    2 +-
 gr-qtgui/include/gnuradio/qtgui/histogram_sink_f.h |  108 ++
 .../include/gnuradio/qtgui/histogramdisplayform.h  |   80 ++
 .../include/gnuradio/qtgui/spectrumUpdateEvents.h  |   28 +
 gr-qtgui/lib/CMakeLists.txt                        |    5 +
 gr-qtgui/lib/ConstellationDisplayPlot.cc           |    3 +
 gr-qtgui/lib/HistogramDisplayPlot.cc               |  440 ++++++
 gr-qtgui/lib/displayform.cc                        |    5 +
 gr-qtgui/lib/histogram_sink_f_impl.cc              |  391 ++++++
 gr-qtgui/lib/histogram_sink_f_impl.h               |  113 ++
 gr-qtgui/lib/histogramdisplayform.cc               |  174 +++
 gr-qtgui/lib/spectrumUpdateEvents.cc               |   43 +
 gr-qtgui/python/qtgui/qa_qtgui.py                  |    3 +
 gr-qtgui/swig/qtgui_swig.i                         |    3 +
 52 files changed, 9325 insertions(+), 40 deletions(-)
 create mode 100644 gr-channels/examples/CMakeLists.txt
 create mode 100644 gr-channels/examples/demo_gmsk.grc
 create mode 100644 gr-channels/examples/demo_ofdm.grc
 create mode 100644 gr-channels/examples/demo_qam.grc
 create mode 100644 gr-channels/examples/demo_quantization.grc
 create mode 100644 gr-channels/examples/demo_spec_an.grc
 create mode 100644 gr-channels/examples/demo_two_tone.grc
 create mode 100644 gr-channels/grc/channels_amp_bal.xml
 create mode 100644 gr-channels/grc/channels_conj_fs_iqcorr.xml
 create mode 100644 gr-channels/grc/channels_distortion_2_gen.xml
 create mode 100644 gr-channels/grc/channels_distortion_3_gen.xml
 create mode 100644 gr-channels/grc/channels_impairments.xml
 create mode 100644 gr-channels/grc/channels_iqbal_gen.xml
 create mode 100644 gr-channels/grc/channels_phase_bal.xml
 create mode 100644 gr-channels/grc/channels_phase_noise_gen.xml
 create mode 100644 gr-channels/grc/channels_quantizer.xml
 create mode 100644 gr-channels/python/channels/amp_bal.py
 create mode 100644 gr-channels/python/channels/conj_fs_iqcorr.py
 create mode 100644 gr-channels/python/channels/distortion_2_gen.py
 create mode 100644 gr-channels/python/channels/distortion_3_gen.py
 create mode 100644 gr-channels/python/channels/impairments.py
 create mode 100644 gr-channels/python/channels/iqbal_gen.py
 create mode 100644 gr-channels/python/channels/phase_bal.py
 create mode 100644 gr-channels/python/channels/phase_noise_gen.py
 create mode 100644 gr-channels/python/channels/quantizer.py
 create mode 100644 gr-qtgui/grc/qtgui_histogram_sink_x.xml
 create mode 100644 gr-qtgui/include/gnuradio/qtgui/HistogramDisplayPlot.h
 create mode 100644 gr-qtgui/include/gnuradio/qtgui/histogram_sink_f.h
 create mode 100644 gr-qtgui/include/gnuradio/qtgui/histogramdisplayform.h
 create mode 100644 gr-qtgui/lib/HistogramDisplayPlot.cc
 create mode 100644 gr-qtgui/lib/histogram_sink_f_impl.cc
 create mode 100644 gr-qtgui/lib/histogram_sink_f_impl.h
 create mode 100644 gr-qtgui/lib/histogramdisplayform.cc


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



reply via email to

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