discuss-gnuradio
[Top][All Lists]
Advanced

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

[Discuss-gnuradio] How to specify (const char *) type in xml


From: Manu T S
Subject: [Discuss-gnuradio] How to specify (const char *) type in xml
Date: Sat, 21 Sep 2013 23:50:48 +0530

Hello Everyone.

I have made an OOT module gr-ldpc. The ldpc encoder loads the parity check matrix data from a file. The constructor of this class takes as input the file name as parameter of type " const char * ".

I used following in param sector in the xml file.
-----------------------------------------------------
  <param>
    <name>File</name>
    <key>alist_file</key>
    <type>const char *</type>
  </param>
--------------------------------------------------------

I also tried using the following

--------------------------------------------------------
  <param>
    <name>File</name>
    <key>alist_file</key>
    <type>str</type>
  </param>
----------------------------------------------------------

To specify the file in the encoder block (in grc) I made a variable block and specified the file name within double quotes "file_name", and used the variable_id in place of the corresponding parameter in the encoder block. In both the cases the block is colored red and I can't run the flow-graph.

What could I use to specify the file name?

--
Manu T S

reply via email to

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