commit-gnuradio
[Top][All Lists]
Advanced

[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>



reply via email to

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