commit-gnuradio
[Top][All Lists]
Advanced

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

[Commit-gnuradio] [gnuradio] branch master updated (7fe6115 -> 3061e47)


From: git
Subject: [Commit-gnuradio] [gnuradio] branch master updated (7fe6115 -> 3061e47)
Date: Thu, 2 Apr 2015 19:15:48 +0000 (UTC)

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

jcorgan pushed a change to branch master
in repository gnuradio.

      from  7fe6115   Merge remote-tracking branch 
'tom/qtgui/timedisplayform_qwt_fix'
       new  096f87e   grc: fix undefined color in headless mode
       new  ca10603   Merge branch 'maint'
       new  50f96a4   gnuradio-runtime: trying to see if this will handle the 
output buffer size of hier blocks; trying to find the proper casting methods
       new  29e86c4   gnuradio-runtime: updated hier_block2 and 
hier_block_detail to allow for propagation of min/max output buffer to all 
blocks within the hier
       new  2665571   gnuradio-runtime:: removed the individual port setting on 
hier_block2, current operation assuming the buffers are being set for latency 
and therefore all blocks are being set to a small amount
       new  34275a2   gnuradio-runtime: added the individual port assignments 
to the hier_block2 max/min_output_buffer size; if output ports have different 
size assignments only the block directly connected to the output port is 
changed otherwise every block within the hier is set to that output buffer 
size; therefore single output hier blocks will always set every block within to 
the output buffer size
       new  2f33b9c   gnuradio-runtime: (option 1) The hier block can now take 
a generic min/max output buffer length and assign it to every block within the 
hier (assumes all output buffers have the same min/max values set); (option 2) 
sets only the blocks connected to hier output ports and does not set the other 
internal blocks (requires that each port has different values); for single port 
output hier blocks only option 1 is possible.
       new  cc824f4   gnuradio-runtime: non-helpful debug outputs removed from 
hier_block2 and hier_block2_detail
       new  f165725   gnuradio-runtime: modified buffer length types to size_t, 
moved buffer length vectors into detail
       new  0d19b0d   gnuradio-runtume: hier_block2 output buffer lengths - 
clean up of debug output
       new  e9f47d9   Merge remote-tracking branch 'saikwolf/hier_buff_tweak'
       new  a15fe0e   gnuradio-runtime: added logger to flat_flowgraph and 
print out a warning for when the max_output_buffer isn't set to the requested 
value
       new  b12a1f6   Merge remote-tracking branch 
'saikwolf/logging_flat_flowgraph'
       new  37425aa   fec: adding ldpc encoder and decoder, initial compile 
working
       new  f22a2c0   fec: adding objects needed to run LDPC along with example 
ALIST file, now imports and instantiates happily
       new  488d195   fec: cleaning up LDPC warnings
       new  f3024ac   fec: LDPC cleaning up comments
       new  5c199ba   fec: re-shuffling LDPC make helper
       new  d8b1d47   fec: ldpc GRC compat cleanup
       new  ef9b37c   fec: ldpc encoder now working in async encoder interface
       new  1bd6282   fec: LDPC async decoder now running
       new  cc1124d   fec: ldpc works, add iterations meta tag, etc
       new  a682152   Merge remote-tracking branch 'osh/ldpc_add'
       new  cc13ec5   digital: bug fixed in chunks_to_symbols that the callback 
functiion set_symbol_table didn't work with additonal qa_tests
       new  6c3edcc   Merge remote-tracking branch 
'fengzhe/chunks_to_symbols_update'
       new  4c12e49   grc: Reworked save confirmation dialog to allow cancel 
option
       new  212982c   grc: Default button in save dialog is now 'save' instead 
of 'close without saving'
       new  10a434c   grc: close unsaved pages first (for cancel save option)
       new  15417bd   grc: make use of GRC_HIER_PATH at runtime
       new  a1e7743   grc: use 'import' for grc-generated hier_blocks (#763)
       new  bcdcfd8   grc: set permissions for generated files
       new  c201a58   grc: no shebang for hier blocks; use python2
       new  95c5938   grc: optional thread-safe setters in generated code (#748)
       new  ffb2830   grc: don't try to open missing files
       new  a601b90   grc: move context def into Bars.py and add submenu
       new  077348c   grc: clean-up 'gnuradio-companion', add mode 'run from 
source'
       new  9b57c33   grc: PropsDialog: apply button and hotkey (Ctrl+Enter)
       new  f128144   Merge remote-tracking branch 
'gnuradio-wg-grc/master_grcwg'
       new  225c6b3   dtv: move "static const" variables from header / class 
into the main code. The original code is not necessary to have in the class, 
and causes issues when compiling using c++11 compliance.
       new  4f5211f   fec: Move the definition of yp_kernel from the class into 
a temp variable in the main code. This variable is used just to find the actual 
Volk kernel, and its current use is not c++11 complaint. Moving it makes the 
code c++11 complaint on both GCC / libstdc++ and Clang / libc++.
       new  e937ed0   qtgui: use QPen::setWidthF for non-integer values.
       new  d3a6160   Merge remote-tracking branch 'michaelld/misc_fixes'
       new  094c890   dtv: redo c++0x complaint std::complex to be c++11 
compliant; works on OSX with GCC (4.2 and 4.8, using listdc++) and Clang (LLVM 
3.4 and 3.6, using libc++), with and without -std=c++11.
       new  3061e47   Merge remote-tracking branch 
'michaelld/fixes_for_std_complex'

The 44 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:
 gnuradio-runtime/include/gnuradio/hier_block2.h    |   48 +
 gnuradio-runtime/lib/flat_flowgraph.cc             |    8 +
 gnuradio-runtime/lib/flat_flowgraph.h              |    4 +
 gnuradio-runtime/lib/hier_block2.cc                |   93 +
 gnuradio-runtime/lib/hier_block2_detail.cc         |  184 +
 gnuradio-runtime/lib/hier_block2_detail.h          |    4 +
 gnuradio-runtime/swig/hier_block2.i                |    8 +
 gr-digital/grc/digital_chunks_to_symbols.xml       |    1 +
 .../gnuradio/digital/chunks_to_symbols_XX.h.t      |    1 +
 gr-digital/lib/chunks_to_symbols_XX_impl.cc.t      |    2 +-
 gr-digital/lib/chunks_to_symbols_XX_impl.h.t       |    2 +-
 gr-digital/python/digital/qa_chunks_to_symbols.py  |   33 +
 gr-dtv/lib/atsc/atsc_sync_impl.cc                  |    7 +
 gr-dtv/lib/atsc/atsc_sync_impl.h                   |    7 -
 gr-dtv/lib/dvbs2/dvbs2_modulator_bc_impl.cc        | 3828 +++++++-------------
 gr-dtv/lib/dvbs2/dvbs2_physical_cc_impl.cc         |   59 +-
 gr-dtv/lib/dvbs2/dvbs2_physical_cc_impl.h          |    2 +-
 gr-dtv/lib/dvbt2/dvbt2_framemapper_cc_impl.cc      |  277 +-
 gr-dtv/lib/dvbt2/dvbt2_framemapper_cc_impl.h       |    2 +-
 gr-dtv/lib/dvbt2/dvbt2_miso_cc_impl.cc             |   12 +-
 gr-dtv/lib/dvbt2/dvbt2_modulator_bc_impl.cc        | 1104 ++----
 gr-dtv/lib/dvbt2/dvbt2_p1insertion_cc_impl.cc      |   13 +-
 gr-dtv/lib/dvbt2/dvbt2_paprtr_cc_impl.cc           |   51 +-
 gr-dtv/lib/dvbt2/dvbt2_pilotgenerator_cc_impl.cc   |  208 +-
 gr-fec/examples/271.127.3.112                      |  402 ++
 gr-fec/grc/fec_block_tree.xml                      |    2 +
 ...oder_def_list.xml => ldpc_decoder_def_list.xml} |   49 +-
 ...oder_def_list.xml => ldpc_encoder_def_list.xml} |   30 +-
 gr-fec/include/gnuradio/fec/alist.h                |  121 +
 gr-fec/include/gnuradio/fec/awgn_bp.h              |  175 +
 gr-fec/include/gnuradio/fec/cldpc.h                |  115 +
 gr-fec/include/gnuradio/fec/generic_decoder.h      |    9 +
 gr-fec/include/gnuradio/fec/gf2mat.h               |  111 +
 gr-fec/include/gnuradio/fec/gf2vec.h               |   71 +
 gr-fec/include/gnuradio/fec/ldpc_decoder.h         |   79 +
 gr-fec/include/gnuradio/fec/ldpc_encoder.h         |   61 +
 gr-fec/include/gnuradio/fec/maxstar.h              |   99 +
 gr-fec/lib/CMakeLists.txt                          |    7 +
 gr-fec/lib/alist.cc                                |  205 ++
 gr-fec/lib/async_decoder_impl.cc                   |   31 +-
 gr-fec/lib/async_encoder_impl.cc                   |   20 +-
 gr-fec/lib/awgn_bp.cc                              |  259 ++
 gr-fec/lib/cc_decoder_impl.cc                      |    2 +-
 gr-fec/lib/cc_decoder_impl.h                       |    1 -
 gr-fec/lib/cldpc.cc                                |  132 +
 gr-fec/lib/gf2mat.cc                               |  193 +
 gr-fec/lib/gf2vec.cc                               |   91 +
 gr-fec/lib/ldpc_decoder.cc                         |  105 +
 gr-fec/lib/ldpc_encoder.cc                         |   76 +
 gr-fec/swig/fec_swig.i                             |    4 +
 gr-qtgui/lib/displayform.cc                        |    2 +-
 grc/blocks/options.xml                             |   16 +
 grc/gui/ActionHandler.py                           |    4 +-
 grc/gui/Bars.py                                    |   53 +-
 grc/gui/Connection.py                              |    6 +-
 grc/gui/Dialogs.py                                 |    8 +-
 grc/gui/FlowGraph.py                               |   21 +-
 grc/gui/MainWindow.py                              |   35 +-
 grc/gui/Param.py                                   |   30 +-
 grc/gui/Preferences.py                             |   10 +-
 grc/gui/PropsDialog.py                             |   19 +-
 grc/python/Generator.py                            |   16 +-
 grc/python/flow_graph.tmpl                         |   34 +-
 grc/scripts/gnuradio-companion                     |  107 +-
 64 files changed, 4917 insertions(+), 3852 deletions(-)
 create mode 100644 gr-fec/examples/271.127.3.112
 copy gr-fec/grc/{variable_repetition_decoder_def_list.xml => 
ldpc_decoder_def_list.xml} (59%)
 copy gr-fec/grc/{variable_dummy_decoder_def_list.xml => 
ldpc_encoder_def_list.xml} (63%)
 mode change 100644 => 100755
 create mode 100644 gr-fec/include/gnuradio/fec/alist.h
 create mode 100644 gr-fec/include/gnuradio/fec/awgn_bp.h
 create mode 100644 gr-fec/include/gnuradio/fec/cldpc.h
 create mode 100644 gr-fec/include/gnuradio/fec/gf2mat.h
 create mode 100644 gr-fec/include/gnuradio/fec/gf2vec.h
 create mode 100644 gr-fec/include/gnuradio/fec/ldpc_decoder.h
 create mode 100755 gr-fec/include/gnuradio/fec/ldpc_encoder.h
 create mode 100644 gr-fec/include/gnuradio/fec/maxstar.h
 create mode 100644 gr-fec/lib/alist.cc
 create mode 100644 gr-fec/lib/awgn_bp.cc
 create mode 100644 gr-fec/lib/cldpc.cc
 create mode 100644 gr-fec/lib/gf2mat.cc
 create mode 100644 gr-fec/lib/gf2vec.cc
 create mode 100644 gr-fec/lib/ldpc_decoder.cc
 create mode 100755 gr-fec/lib/ldpc_encoder.cc



reply via email to

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