diff options
author | tracierenea <tracie.perez@mavs.uta.edu> | 2016-03-23 14:55:22 -0500 |
---|---|---|
committer | Johnathan Corgan <johnathan@corganlabs.com> | 2016-03-27 06:21:24 -0700 |
commit | bfeb3604f999dfb34d70979981a5fa07ea10b92a (patch) | |
tree | 892197915c6ded35e61d8a0d1c61bd95060299d9 /gr-fec | |
parent | 39eaf9d4a337dc00f2a91b0cd2fa4e0e9d7609b3 (diff) |
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.
Diffstat (limited to 'gr-fec')
-rw-r--r-- | gr-fec/examples/ber_curve_gen_ldpc.grc | 22 |
1 files 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 41b654077b..6a0d57561b 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> |