diff options
author | Josh Blum | 2011-01-21 15:20:45 -0800 |
---|---|---|
committer | Josh Blum | 2011-03-01 17:02:06 -0800 |
commit | f0537a7da4571bd6aaab273a0588eaef04121648 (patch) | |
tree | 6b894b17c0085cb287c9f5f0b0a7c7b679f46b58 /gr-wxgui/grc/wxgui_constellationsink2.xml | |
parent | 2c263e9640f2812b241d724286aaa1f13c57935f (diff) | |
download | gnuradio-f0537a7da4571bd6aaab273a0588eaef04121648.tar.gz gnuradio-f0537a7da4571bd6aaab273a0588eaef04121648.tar.bz2 gnuradio-f0537a7da4571bd6aaab273a0588eaef04121648.zip |
grc: moved wxgui blocks and python into gr-wxgui/grc
Prefixed wxgui blocks with WX GUI in the block names.
Added category to wxgui variables blocks (not in the main block tree.xml)
Diffstat (limited to 'gr-wxgui/grc/wxgui_constellationsink2.xml')
-rw-r--r-- | gr-wxgui/grc/wxgui_constellationsink2.xml | 139 |
1 files changed, 139 insertions, 0 deletions
diff --git a/gr-wxgui/grc/wxgui_constellationsink2.xml b/gr-wxgui/grc/wxgui_constellationsink2.xml new file mode 100644 index 000000000..881c6eba3 --- /dev/null +++ b/gr-wxgui/grc/wxgui_constellationsink2.xml @@ -0,0 +1,139 @@ +<?xml version="1.0"?> +<!-- +################################################### +##Constellation Sink +################################################### + --> +<block> + <name>WX GUI Constellation Sink</name> + <key>wxgui_constellationsink2</key> + <import>from gnuradio.wxgui import constsink_gl</import> + <make>#set $parent = $notebook() and 'self.%s.GetPage(%s)'%$notebook() or 'self' +constsink_gl.const_sink_c( + $(parent).GetWin(), + title=$title, + sample_rate=$samp_rate, + frame_rate=$frame_rate, + const_size=$const_size, + M=$M, + theta=$theta, + alpha=$alpha, + fmax=$fmax, + mu=$mu, + gain_mu=$gain_mu, + symbol_rate=$symbol_rate, + omega_limit=$omega_limit, +#if $win_size() + size=$win_size, +#end if +) +#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_sample_rate($samp_rate)</callback> + <param> + <name>Title</name> + <key>title</key> + <value>Constellation Plot</value> + <type>string</type> + </param> + <param> + <name>Sample Rate</name> + <key>samp_rate</key> + <value>samp_rate</value> + <type>real</type> + </param> + <param> + <name>Frame Rate</name> + <key>frame_rate</key> + <value>5</value> + <type>real</type> + </param> + <param> + <name>Constellation Size</name> + <key>const_size</key> + <value>2048</value> + <type>real</type> + </param> + <param> + <name>M</name> + <key>M</key> + <value>4</value> + <type>int</type> + </param> + <param> + <name>Theta</name> + <key>theta</key> + <value>0</value> + <type>real</type> + </param> + <param> + <name>Alpha</name> + <key>alpha</key> + <value>0.005</value> + <type>real</type> + </param> + <param> + <name>Max Freq</name> + <key>fmax</key> + <value>0.06</value> + <type>real</type> + </param> + <param> + <name>Mu</name> + <key>mu</key> + <value>0.5</value> + <type>real</type> + </param> + <param> + <name>Gain Mu</name> + <key>gain_mu</key> + <value>0.005</value> + <type>real</type> + </param> + <param> + <name>Symbol Rate</name> + <key>symbol_rate</key> + <value>samp_rate/4.</value> + <type>real</type> + </param> + <param> + <name>Omega Limit</name> + <key>omega_limit</key> + <value>0.005</value> + <type>real</type> + </param> + <param> + <name>Window Size</name> + <key>win_size</key> + <value></value> + <type>int_vector</type> + <hide>#if $win_size() then 'none' else 'part'#</hide> + </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>not $win_size or len($win_size) == 2</check> + <sink> + <name>in</name> + <type>complex</type> + </sink> + <doc> +Leave the window blank for the default size, otherwise enter a tuple of (width, height) pixels. + +Use the Grid Position (row, column, row span, column span) to position the graphical element in the window. + +Use the Notebook Param (notebook-id, page-index) to place the graphical element inside of a notebook page. + </doc> +</block> |