[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Commit-gnuradio] [gnuradio] 08/10: gr-fec: Address missing block error
From: |
git |
Subject: |
[Commit-gnuradio] [gnuradio] 08/10: gr-fec: Address missing block error in example GRC file. |
Date: |
Sun, 27 Mar 2016 13:57:57 +0000 (UTC) |
This is an automated email from the git hooks/post-receive script.
jcorgan pushed a commit to branch maint
in repository gnuradio.
commit bfeb3604f999dfb34d70979981a5fa07ea10b92a
Author: tracierenea <address@hidden>
Date: Wed Mar 23 14:55:22 2016 -0500
gr-fec: Address missing block error in example GRC file.
As-is, this flowgraph gives a "Missing Block" error. This is because it's
looking for variable_ldpc_gen_mtrx_encoder_def, which we changed the name of
during integration prior to pull request #660. I've updated this example GRC
file to reflect the correct name of the intended block,
variable_ldpc_encoder_G_def, which gets rid of the "Missing Block" error.
With this correction, the flowgraph can be executed, but it gives me the
following error:
return _fec_swig.ldpc_encoder_make(*args, **kwargs)
TypeError: in method 'ldpc_encoder_make', argument 1 of type 'std::string'
I will address this separately as I don't think the error is caused by this
GRC file.
Also, I've changed the block name of the other LDPC encoder definition
block in this flowgraph to be the actual block that I intended to use.
---
gr-fec/examples/ber_curve_gen_ldpc.grc | 22 +++++++++-------------
1 file changed, 9 insertions(+), 13 deletions(-)
diff --git a/gr-fec/examples/ber_curve_gen_ldpc.grc
b/gr-fec/examples/ber_curve_gen_ldpc.grc
index 41b6540..6a0d575 100644
--- a/gr-fec/examples/ber_curve_gen_ldpc.grc
+++ b/gr-fec/examples/ber_curve_gen_ldpc.grc
@@ -249,7 +249,7 @@
</param>
<param>
<key>_coordinate</key>
- <value>(632, 547)</value>
+ <value>(700, 547)</value>
</param>
<param>
<key>_rotation</key>
@@ -367,11 +367,7 @@
</param>
</block>
<block>
- <key>variable_ldpc_encoder_def</key>
- <param>
- <key>file</key>
- <value></value>
- </param>
+ <key>variable_ldpc_encoder_H_def</key>
<param>
<key>comment</key>
<value></value>
@@ -397,14 +393,14 @@
<value>0</value>
</param>
<param>
- <key>gap</key>
- <value>0</value>
- </param>
- <param>
<key>id</key>
<value>enc_ldpc</value>
</param>
<param>
+ <key>H</key>
+ <value>H</value>
+ </param>
+ <param>
<key>value</key>
<value>"ok"</value>
</param>
@@ -414,7 +410,7 @@
</param>
</block>
<block>
- <key>variable_ldpc_gen_mtrx_encoder_def</key>
+ <key>variable_ldpc_encoder_G_def</key>
<param>
<key>comment</key>
<value></value>
@@ -433,7 +429,7 @@
</param>
<param>
<key>_coordinate</key>
- <value>(624, 427)</value>
+ <value>(700, 427)</value>
</param>
<param>
<key>_rotation</key>
@@ -1003,7 +999,7 @@
</param>
<param>
<key>label3</key>
- <value>LDPC (R.U. matrix)</value>
+ <value>LDPC (H matrix)</value>
</param>
<param>
<key>marker3</key>
- [Commit-gnuradio] [gnuradio] branch maint updated (0a1a76d -> 4ab650a), git, 2016/03/27
- [Commit-gnuradio] [gnuradio] 03/10: ctrlport: gr-perf-monitorx: add small offset to avoid log(0) calls., git, 2016/03/27
- [Commit-gnuradio] [gnuradio] 01/10: ctrlport: Some version issues for running gr-perf-monitorx, git, 2016/03/27
- [Commit-gnuradio] [gnuradio] 04/10: pmt::is_dict() and is_pair() both return true for both dictionaries and pairs. This causes issues as one may believe they have a dictionary pmt and attempt to reference it's keys (which will throw an exception for a pair). This simply serves to document this behavior, git, 2016/03/27
- [Commit-gnuradio] [gnuradio] 07/10: gr-fec: correcting function name in GRC xml, git, 2016/03/27
- [Commit-gnuradio] [gnuradio] 02/10: ctrlport: gr-perf-monitorx - don't stash the canvas, ask the figure., git, 2016/03/27
- [Commit-gnuradio] [gnuradio] 06/10: gr-fec: update/add documentation for LDPC GRC blocks., git, 2016/03/27
- [Commit-gnuradio] [gnuradio] 05/10: Merge remote-tracking branch 'jgilbert/pmt_doc_update' into maint, git, 2016/03/27
- [Commit-gnuradio] [gnuradio] 10/10: gr-fec: Address make error when parallelism = 1 or 2., git, 2016/03/27
- [Commit-gnuradio] [gnuradio] 09/10: gr-fec: Adding doc in BER Curve Gen. block re: parallelism., git, 2016/03/27
- [Commit-gnuradio] [gnuradio] 08/10: gr-fec: Address missing block error in example GRC file.,
git <=