commit-gnuradio
[Top][All Lists]
Advanced

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

[Commit-gnuradio] [gnuradio] branch next updated (de3f86e -> 1ae4db2)


From: git
Subject: [Commit-gnuradio] [gnuradio] branch next updated (de3f86e -> 1ae4db2)
Date: Sat, 17 Oct 2015 17:26:55 +0000 (UTC)

This is an automated email from the git hooks/post-receive script.

jcorgan pushed a change to branch next
in repository gnuradio.

      from  de3f86e   Merge branch 'master' into next
       new  3670680   freq_xlating_fir: added pmt::dict command handling
       new  c0251c9   grc: added horizontal mouse wheel scrolling
       new  820bd05   grc: made flow graph python files the UTF-8 they always 
should have been
       new  b51f27b   Merge remote-tracking branch 
'gnuradio-wg-grc/master_grcwg'
       new  9bf9b47   ctrlport: blocks: added controlport support to 
multiply_const_XXX blocks.
       new  75dfcd4   ctrlport: fixed copy-paste error for setting short data.
       new  ce28185   ctrlport: blocks: added controlport support to 
add_const_XX blocks.
       new  09b0387   ctrlport: provides a ControlPort model that connects 
directly with a block's message handler.
       new  86fa885   uhd: open support for controlport in static builds.
       new  7c587f0   uhd: Adds ControlPort support to USRP source block's 
command message port.
       new  1563fa4   ctrlport: adding new examples.
       new  e1290cc   Merge remote-tracking branch 'tom/ctrlport_extending0'
       new  6bd9850   Fix uhd_rx_nogui so it runs.
       new  83da789   Merge branch 'maint'
       new  1ae4db2   Merge branch 'master' into next

The 15 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../include/gnuradio/rpccallbackregister_base.h    |   3 +
 .../include/gnuradio/rpcregisterhelpers.h          | 120 ++-
 .../include/gnuradio/rpcserver_aggregator.h        |  29 +
 gnuradio-runtime/include/gnuradio/rpcserver_base.h |   5 +
 .../include/gnuradio/rpcserver_thrift.h            |  71 +-
 .../include/gnuradio/thrift_server_template.h      |   1 -
 .../lib/controlport/rpcserver_aggregator.cc        |  19 +
 .../lib/controlport/thrift/gnuradio.thrift         |   1 +
 .../lib/controlport/thrift/rpcserver_thrift.cc     |  74 ++
 .../python/gnuradio/ctrlport/RPCConnection.py      |   3 +
 .../gnuradio/ctrlport/RPCConnectionThrift.py       |  17 +
 gr-blocks/examples/ctrlport/CMakeLists.txt         |  16 +-
 .../examples/ctrlport/simple_copy.grc              | 214 ++---
 .../examples/ctrlport/simple_copy_controller.py    |  25 +
 .../examples/ctrlport/usrp_source_control.grc      | 992 +++++++++++----------
 .../examples/ctrlport/usrp_source_controller.py    |  29 +
 gr-blocks/include/gnuradio/blocks/CMakeLists.txt   |   6 +-
 .../blocks/{add_const_XX.h.t => add_const_bb.h}    |  24 +-
 .../blocks/{add_const_XX.h.t => add_const_cc.h}    |  24 +-
 .../blocks/{add_const_XX.h.t => add_const_ff.h}    |  24 +-
 .../blocks/{add_const_XX.h.t => add_const_ii.h}    |  24 +-
 .../blocks/{add_const_XX.h.t => add_const_ss.h}    |  24 +-
 gr-blocks/lib/CMakeLists.txt                       |   6 +-
 gr-blocks/lib/add_const_XX_impl.cc.t               |  77 --
 gr-blocks/lib/add_const_XX_impl.h.t                |  51 --
 gr-blocks/lib/add_const_bb_impl.cc                 | 107 +++
 .../lib/{add_XX_impl.h.t => add_const_bb_impl.h}   |  24 +-
 gr-blocks/lib/add_const_cc_impl.cc                 | 103 +++
 ...ultiply_const_cc_impl.h => add_const_cc_impl.h} |  16 +-
 gr-blocks/lib/add_const_ff_impl.cc                 | 103 +++
 ...ultiply_const_ff_impl.h => add_const_ff_impl.h} |  20 +-
 gr-blocks/lib/add_const_ii_impl.cc                 | 103 +++
 .../lib/{add_XX_impl.h.t => add_const_ii_impl.h}   |  23 +-
 gr-blocks/lib/add_const_ss_impl.cc                 | 107 +++
 .../lib/{add_XX_impl.h.t => add_const_ss_impl.h}   |  24 +-
 gr-blocks/lib/copy_impl.cc                         |  13 +
 gr-blocks/lib/copy_impl.h                          |   2 +
 gr-blocks/lib/multiply_const_cc_impl.cc            |  10 +-
 gr-blocks/lib/multiply_const_ff_impl.cc            |  24 +-
 gr-blocks/lib/multiply_const_ff_impl.h             |   2 +
 gr-blocks/lib/multiply_const_vcc_impl.cc           |  30 +-
 gr-blocks/lib/multiply_const_vcc_impl.h            |   2 +
 gr-blocks/lib/multiply_const_vff_impl.cc           |  26 +-
 gr-blocks/lib/multiply_const_vff_impl.h            |   2 +
 .../lib/freq_xlating_fir_filter_XXX_impl.cc.t      |   8 +-
 gr-uhd/apps/uhd_rx_nogui                           |   3 +-
 gr-uhd/lib/CMakeLists.txt                          |  10 -
 gr-uhd/lib/usrp_source_impl.cc                     |  12 +
 gr-uhd/lib/usrp_source_impl.h                      |   2 +
 grc/gui/DrawingArea.py                             |   8 +
 grc/python/Generator.py                            |   3 +-
 grc/python/flow_graph.tmpl                         |   1 +
 52 files changed, 1772 insertions(+), 895 deletions(-)
 copy gr-zeromq/examples/zeromq_pubsub.grc => 
gr-blocks/examples/ctrlport/simple_copy.grc (88%)
 create mode 100755 gr-blocks/examples/ctrlport/simple_copy_controller.py
 copy gr-uhd/examples/grc/uhd_rx_dpsk.grc => 
gr-blocks/examples/ctrlport/usrp_source_control.grc (77%)
 create mode 100755 gr-blocks/examples/ctrlport/usrp_source_controller.py
 copy gr-blocks/include/gnuradio/blocks/{add_const_XX.h.t => add_const_bb.h} 
(73%)
 copy gr-blocks/include/gnuradio/blocks/{add_const_XX.h.t => add_const_cc.h} 
(72%)
 copy gr-blocks/include/gnuradio/blocks/{add_const_XX.h.t => add_const_ff.h} 
(72%)
 copy gr-blocks/include/gnuradio/blocks/{add_const_XX.h.t => add_const_ii.h} 
(73%)
 rename gr-blocks/include/gnuradio/blocks/{add_const_XX.h.t => add_const_ss.h} 
(72%)
 delete mode 100644 gr-blocks/lib/add_const_XX_impl.cc.t
 delete mode 100644 gr-blocks/lib/add_const_XX_impl.h.t
 create mode 100644 gr-blocks/lib/add_const_bb_impl.cc
 copy gr-blocks/lib/{add_XX_impl.h.t => add_const_bb_impl.h} (70%)
 create mode 100644 gr-blocks/lib/add_const_cc_impl.cc
 copy gr-blocks/lib/{multiply_const_cc_impl.h => add_const_cc_impl.h} (74%)
 create mode 100644 gr-blocks/lib/add_const_ff_impl.cc
 copy gr-blocks/lib/{multiply_const_ff_impl.h => add_const_ff_impl.h} (73%)
 create mode 100644 gr-blocks/lib/add_const_ii_impl.cc
 copy gr-blocks/lib/{add_XX_impl.h.t => add_const_ii_impl.h} (72%)
 create mode 100644 gr-blocks/lib/add_const_ss_impl.cc
 copy gr-blocks/lib/{add_XX_impl.h.t => add_const_ss_impl.h} (70%)



reply via email to

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