0

私は現在、GNU Radio プロジェクトに取り組んでおり、xml 部分に問題があります。

GNU Radio の変数を取得するには、構成ファイルを開いて読み取る必要があります。

これで、構成ファイルを読み取ることができる組み込みファイルができましたが、GNU Radio フローグラフの開始時に 1 回だけです。GNU Radio の実行中に構成ファイルで変数を変更したときに、変数を更新したいと考えています。

XML と GNU Radio を暗示しているため、おそらく特定の質問ですが、GNU Radio を知らなくても解決できると思います。

そう、そこにあります:

<block>
    <name>Variable Config1</name>
    <key>variable_config1</key>
    <import>import ConfigParser</import>
    <var_make>self._$(id)_config = ConfigParser.ConfigParser()
self._$(id)_config.read($config_file)
try: $(id) = self._$(id)_config.$(type.get)($section, $option)
except: $(id) = $value
self.$(id) = $(id)</var_make>
    <make></make>
    <callback>self.set_$(id)($value)</callback> 
    <callback>self._$(id)_config = ConfigParser.ConfigParser()
self._$(id)_config.read($config_file)
if not self._$(id)_config.has_section($section):
    self._$(id)_config.add_section($section)
self._$(id)_config.set($section, $option, str($writeback))
self._$(id)_config.write(open($config_file, 'w'))</callback>
    <param>
        <name>Default Value</name>
        <key>value</key>
        <value>0</value>
        <type>$type</type>
    </param>
    <param>
        <name>Type</name>
        <key>type</key>
        <value>real</value>
        <type>enum</type>
        <option>
            <name>Float</name>
            <key>real</key>
            <opt>get:getfloat</opt>
        </option>
        <option>
            <name>Int</name>
            <key>int</key>
            <opt>get:getint</opt>
        </option>
        <option>
            <name>Bool</name>
            <key>bool</key>
            <opt>get:getboolean</opt>
        </option>
        <option>
            <name>String</name>
            <key>string</key>
            <opt>get:get</opt>
        </option>
    </param>
    <param>
        <name>Config File</name>
        <key>config_file</key>
        <value>default</value>
        <type>file_open</type>
    </param>
    <param>
        <name>Section</name>
        <key>section</key>
        <value>main</value>
        <type>string</type>
    </param>
    <param>
        <name>Option</name>
        <key>option</key>
        <value>key</value>
        <type>string</type>
    </param>
    <param>
        <name>WriteBack</name>
        <key>writeback</key>
        <value>None</value>
        <type>raw</type>
    </param>
    <doc>


This block represents a variable that can be read from a config file.

To save the value back into the config file: \
enter the name of another variable into the writeback param. \
When the other variable is changed at runtime, the config file will be re-written.
    </doc>
</block>

正直なところ、私は XML をまったく知りませんが、これを行う必要があります。

XML を知らなくても、質問する前に調査を行いましたが、何も見つかりませんでした。

4

2 に答える 2

0

あなたがやろうとしていることは意味がありません。これらの XML ファイルは、フロー グラフが Python ソース コードに変換されるずっと前に実際に読み取られ、その後の操作にはまったく関係ありません。GRC フロー グラフから生成された GNU Radio python アプリケーションは、これらの XML ファイルとは何の関係もありません。

于 2015-08-10T21:50:27.077 に答える
-1

実際、gnuradio にはこれを行うためのブロックがあります。したがって、誰かがフローグラフの実行中に Python を使用して変数を変更したい場合は、xmlrpc ブロックを探してください。

于 2014-08-11T17:36:49.687 に答える