diff options
Diffstat (limited to 'gr-input/grc/plot_sink.xml')
-rwxr-xr-x | gr-input/grc/plot_sink.xml | 112 |
1 files changed, 112 insertions, 0 deletions
diff --git a/gr-input/grc/plot_sink.xml b/gr-input/grc/plot_sink.xml new file mode 100755 index 000000000..07022ea07 --- /dev/null +++ b/gr-input/grc/plot_sink.xml @@ -0,0 +1,112 @@ +<?xml version="1.0"?> +<!-- +################################################### +##Variable Sink: Custom blks2 block +################################################### + --> +<block> + <name>Plot Sink</name> + <key>plot_sink</key> + <category>Single Board Heater System</category> + <import>import gnuradio.input.plot_sink</import> + <make>#set $parent = $notebook() and 'self.%s.GetPage(%s)'%$notebook() or 'self' +gnuradio.input.plot_sink.plot_sink_$(type.fcn)( + $(parent).GetWin(), + title=$title, + vlen=$vlen, + decim=$decim, + gsz=$gsz, + zoom=$zoom, +) +#if not $grid_pos() +$(parent).Add(self.$(id).win) +#else +$(parent).GridAdd(self.$(id).win, $(', '.join(map(str, $grid_pos())))) +#end if</make> + <callback>set_decim($decim)</callback> + <param> + <name>Type</name> + <key>type</key> + <type>enum</type> + <option> + <name>Complex</name> + <key>complex</key> + <opt>fcn:c</opt> + </option> + <option> + <name>Float</name> + <key>float</key> + <opt>fcn:f</opt> + </option> + <option> + <name>Int</name> + <key>int</key> + <opt>fcn:i</opt> + </option> + <option> + <name>Short</name> + <key>short</key> + <opt>fcn:s</opt> + </option> + <option> + <name>Byte</name> + <key>byte</key> + <opt>fcn:b</opt> + </option> + </param> + <param> + <name>Title</name> + <key>title</key> + <value>Scope Plot</value> + <type>string</type> + </param> + <param> + <name>Decimation</name> + <key>decim</key> + <value>1</value> + <type>int</type> + </param> + <param> + <name>Vec Length</name> + <key>vlen</key> + <value>1</value> + <type>int</type> + </param> + + <param> + <name>Graph size</name> + <key>gsz</key> + <value>50</value> + <type>int</type> + </param> + <param> + <name>History Required</name> + <key>zoom</key> + <value>0</value> + <type>int</type> + </param> + + <param> + <name>Grid Position</name> + <key>grid_pos</key> + <value></value> + <type>grid_pos</type> + </param> + <param> + <name>Notebook</name> + <key>notebook</key> + <value></value> + <type>notebook</type> + </param> + + <check>$vlen > 0</check> + <sink> + <name>in</name> + <type>$type</type> + <vlen>$vlen</vlen> + </sink> + <doc> +Read samples from the input stream and \ +plot one in every decimation samples to the plot sink. +</doc> +</block> |