[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Commit-gnuradio] [gnuradio] branch next-qt5 updated (0b0eddb -> a342646
From: |
git |
Subject: |
[Commit-gnuradio] [gnuradio] branch next-qt5 updated (0b0eddb -> a342646) |
Date: |
Tue, 8 Dec 2015 00:31:26 +0000 (UTC) |
This is an automated email from the git hooks/post-receive script.
jcorgan pushed a change to branch next-qt5
in repository gnuradio.
from 0b0eddb Merge branch 'next' into next-qt5
new c04bef9 blocks: fixed issue #861: tagged_stream_align can miss
tags
new 86d551e Merge branch 'maint'
new 60d5c5e grc: typo in tooltip
new 6065236 grc: set font for dummy block params
new bf6d4e2 Merge remote-tracking branch
'gnuradio-wg-grc/maint_grcwg' into maint
new 6fed8f8 Merge branch 'maint'
new bd33990 uhd: Added controlport interface for UHD sink's "command"
message handler.
new b57d228 Merge remote-tracking branch 'tom/uhd/sink_ctrlport'
new df4f582 grc: some clean-up
new 635bb2d grc: add embedded python modules
new ad1df32 grc: show epy_blocks and epy_module source in generated
code preview
new ef14936 grc: rename embedded python blocks
new 9587f5b Merge remote-tracking branch
'gnuradio-wg-grc/master_grcwg'
new 7ec5e13 Merge branch 'master' into next
new 97a87e0 polar: channel construction bugfixes in Python code
new 3fb49b6 polar: fixed channel construction naming error
new f321858 polar: BEC channel construction optimized
new c5f4404 polar: added more details in README about usage of
channel construction code
new a96c1dd Merge remote-tracking branch 'jdemel/polar-bugfixes'
new f6c8d3f polar: systematic test code added
new e86d80c polar: sytematic encoder added
new 9ac7203 polar: systematic decoder added
new 422271f Merge remote-tracking branch 'jdemel/polar-systematic'
new 8bc9c42 Merge branch 'master' into next
new a342646 Merge branch 'next' into next-qt5
The 25 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:
.../examples/ctrlport/usrp_sink_controller.py | 42 ++
.../examples/ctrlport/usrp_source_control.grc | 14 +-
.../examples/ctrlport/usrp_source_controller.py | 33 +-
gr-blocks/lib/tagged_stream_align_impl.cc | 2 +-
gr-fec/examples/tpc_ber_curve_gen.py | 457 ---------------------
gr-fec/grc/fec_block_tree.xml | 6 +-
gr-fec/grc/variable_polar_code_configurator.xml | 4 +-
...ml => variable_polar_decoder_sc_systematic.xml} | 18 +-
...c.xml => variable_polar_encoder_systematic.xml} | 18 +-
gr-fec/include/gnuradio/fec/CMakeLists.txt | 3 +-
gr-fec/include/gnuradio/fec/polar_common.h | 12 +
.../gnuradio/fec/polar_decoder_sc_systematic.h | 82 ++++
gr-fec/include/gnuradio/fec/polar_encoder.h | 8 -
.../gnuradio/fec/polar_encoder_systematic.h | 111 +++++
gr-fec/lib/CMakeLists.txt | 2 +
gr-fec/lib/polar_common.cc | 53 +++
...ecoder_sc.cc => polar_decoder_sc_systematic.cc} | 60 +--
gr-fec/lib/polar_encoder.cc | 43 +-
gr-fec/lib/polar_encoder_systematic.cc | 79 ++++
gr-fec/python/fec/polar/CMakeLists.txt | 2 +-
gr-fec/python/fec/polar/README.md | 30 +-
gr-fec/python/fec/polar/__init__.py | 8 +-
gr-fec/python/fec/polar/channel_construction.py | 6 +-
...ruction_bsc.py => channel_construction_awgn.py} | 28 +-
.../python/fec/polar/channel_construction_bec.py | 155 ++++++-
gr-fec/python/fec/polar/common.py | 15 +
gr-fec/python/fec/polar/decoder.py | 83 ++--
gr-fec/python/fec/polar/encoder.py | 40 +-
gr-fec/python/fec/polar/helper_functions.py | 49 ++-
gr-fec/python/fec/polar/polar_channel_construction | 2 +-
gr-fec/python/fec/polar/testbed.py | 49 +--
...der_sc.py => qa_polar_decoder_sc_systematic.py} | 32 +-
...r_encoder.py => qa_polar_encoder_systematic.py} | 37 +-
gr-fec/swig/fec_swig.i | 7 +-
gr-uhd/lib/usrp_sink_impl.cc | 13 +
gr-uhd/lib/usrp_sink_impl.h | 2 +
grc/base/FlowGraph.py | 8 +-
grc/blocks/epy_block.xml | 2 +-
grc/blocks/epy_module.xml | 33 ++
grc/gui/Actions.py | 2 +-
grc/gui/Block.py | 4 +-
grc/gui/Param.py | 2 +-
grc/gui/PropsDialog.py | 12 +-
grc/python/FlowGraph.py | 35 +-
grc/python/Generator.py | 40 +-
grc/python/Param.py | 2 +-
grc/python/flow_graph.tmpl | 5 +-
47 files changed, 966 insertions(+), 784 deletions(-)
create mode 100755 gr-blocks/examples/ctrlport/usrp_sink_controller.py
delete mode 100755 gr-fec/examples/tpc_ber_curve_gen.py
copy gr-fec/grc/{variable_polar_decoder_sc.xml =>
variable_polar_decoder_sc_systematic.xml} (62%)
copy gr-fec/grc/{variable_polar_decoder_sc.xml =>
variable_polar_encoder_systematic.xml} (59%)
create mode 100644 gr-fec/include/gnuradio/fec/polar_decoder_sc_systematic.h
create mode 100644 gr-fec/include/gnuradio/fec/polar_encoder_systematic.h
copy gr-fec/lib/{polar_decoder_sc.cc => polar_decoder_sc_systematic.cc} (57%)
create mode 100644 gr-fec/lib/polar_encoder_systematic.cc
rename gr-fec/python/fec/polar/{channel_construction_bsc.py =>
channel_construction_awgn.py} (93%)
copy gr-fec/python/fec/{qa_polar_decoder_sc.py =>
qa_polar_decoder_sc_systematic.py} (76%)
copy gr-fec/python/fec/{qa_polar_encoder.py => qa_polar_encoder_systematic.py}
(74%)
create mode 100644 grc/blocks/epy_module.xml
- [Commit-gnuradio] [gnuradio] branch next-qt5 updated (0b0eddb -> a342646),
git <=