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-777-g11746e7
Date: Wed, 20 Feb 2013 19:11:46 +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  11746e7de98462a6d6a9917e0500077ed063a1d7 (commit)
       via  e09420595c730062b17630293eaafc8f37480b18 (commit)
       via  43adf2bff2e7c05f407b86d9734f3bb67cdc7914 (commit)
       via  a5bb5783fb20a4f136650c00d3fd94bb28add738 (commit)
      from  68fbb9eb29d23dd1a177a1205152635d564f992a (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 11746e7de98462a6d6a9917e0500077ed063a1d7
Merge: e094205 68fbb9e
Author: Tom Rondeau <address@hidden>
Date:   Wed Feb 20 14:12:26 2013 -0500

    Merge branch 'next' of gnuradio.org:gnuradio into next

commit e09420595c730062b17630293eaafc8f37480b18
Author: Tom Rondeau <address@hidden>
Date:   Tue Feb 19 18:34:30 2013 -0500

    qtgui: middle button now brings up context menu anywhere on plot.
    
    Middle button + ctrl key allows panning of plot.
    
    Also updates grid toggle to use QAction's checkable state.

commit 43adf2bff2e7c05f407b86d9734f3bb67cdc7914
Author: Tom Rondeau <address@hidden>
Date:   Tue Feb 19 15:03:19 2013 -0500

    uhd: fixing incorrect module names for UHD examples.

commit a5bb5783fb20a4f136650c00d3fd94bb28add738
Author: Tom Rondeau <address@hidden>
Date:   Tue Feb 19 14:50:50 2013 -0500

    uhd: converted gr-uhd to v3.7 style.

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

Summary of changes:
 gr-analog/python/nbfm_tx.py                        |    3 +-
 gr-qtgui/lib/DisplayPlot.cc                        |    2 +-
 gr-qtgui/lib/displayform.cc                        |   52 +--
 gr-qtgui/lib/displayform.h                         |    1 -
 gr-uhd/CMakeLists.txt                              |    2 +-
 gr-uhd/examples/c++/tags_demo.cc                   |   14 +-
 gr-uhd/examples/python/usrp_am_mw_rcv.py           |    1 +
 gr-uhd/examples/python/usrp_nbfm_ptt.py            |   33 +-
 gr-uhd/examples/python/usrp_spectrum_sense.py      |   12 +-
 gr-uhd/examples/python/usrp_wfm_rcv.py             |    2 +-
 gr-uhd/examples/python/usrp_wfm_rcv_fmdet.py       |    2 +-
 gr-uhd/examples/python/usrp_wfm_rcv_nogui.py       |    2 +-
 gr-uhd/examples/python/usrp_wfm_rcv_sca.py         |    2 +-
 gr-uhd/include/gr_uhd_usrp_sink.h                  |  492 ---------------
 gr-uhd/include/gr_uhd_usrp_source.h                |  538 -----------------
 gr-uhd/include/{ => uhd}/CMakeLists.txt            |   12 +-
 .../{gr_uhd_amsg_source.h => uhd/amsg_source.h}    |   51 +-
 gr-uhd/include/{gr_uhd_api.h => uhd/api.h}         |    0
 gr-uhd/include/uhd/usrp_sink.h                     |  516 ++++++++++++++++
 gr-uhd/include/uhd/usrp_source.h                   |  567 ++++++++++++++++++
 gr-uhd/lib/CMakeLists.txt                          |    6 +-
 gr-uhd/lib/amsg_source_impl.cc                     |   86 +++
 .../lib/amsg_source_impl.h                         |   39 +-
 gr-uhd/lib/gr_uhd_amsg_source.cc                   |   95 ---
 gr-uhd/lib/gr_uhd_common.h                         |   26 +-
 gr-uhd/lib/gr_uhd_usrp_sink.cc                     |  503 ----------------
 gr-uhd/lib/gr_uhd_usrp_source.cc                   |  563 ------------------
 gr-uhd/lib/usrp_sink_impl.cc                       |  575 ++++++++++++++++++
 gr-uhd/lib/usrp_sink_impl.h                        |  137 +++++
 gr-uhd/lib/usrp_source_impl.cc                     |  628 ++++++++++++++++++++
 gr-uhd/lib/usrp_source_impl.h                      |  144 +++++
 gr-uhd/swig/uhd_swig.i                             |   21 +-
 32 files changed, 2792 insertions(+), 2335 deletions(-)
 delete mode 100644 gr-uhd/include/gr_uhd_usrp_sink.h
 delete mode 100644 gr-uhd/include/gr_uhd_usrp_source.h
 rename gr-uhd/include/{ => uhd}/CMakeLists.txt (83%)
 rename gr-uhd/include/{gr_uhd_amsg_source.h => uhd/amsg_source.h} (53%)
 rename gr-uhd/include/{gr_uhd_api.h => uhd/api.h} (100%)
 create mode 100644 gr-uhd/include/uhd/usrp_sink.h
 create mode 100644 gr-uhd/include/uhd/usrp_source.h
 create mode 100644 gr-uhd/lib/amsg_source_impl.cc
 copy gr-blocks/lib/add_const_XX_impl.h.t => gr-uhd/lib/amsg_source_impl.h (60%)
 delete mode 100644 gr-uhd/lib/gr_uhd_amsg_source.cc
 delete mode 100644 gr-uhd/lib/gr_uhd_usrp_sink.cc
 delete mode 100644 gr-uhd/lib/gr_uhd_usrp_source.cc
 create mode 100644 gr-uhd/lib/usrp_sink_impl.cc
 create mode 100644 gr-uhd/lib/usrp_sink_impl.h
 create mode 100644 gr-uhd/lib/usrp_source_impl.cc
 create mode 100644 gr-uhd/lib/usrp_source_impl.h


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



reply via email to

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