From 4f480479afac529eadc65f4e0bc6fe13e42553b3 Mon Sep 17 00:00:00 2001 From: jblum Date: Tue, 24 Mar 2009 19:45:55 +0000 Subject: Merged r10666:10669 from jblum/vlen. Trunk passes distcheck. git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@10678 221aa14e-8319-0410-a670-987f0aec2ac5 --- grc/data/platforms/python/block_tree.xml | 4 +- grc/data/platforms/python/blocks/Makefile.am | 4 +- grc/data/platforms/python/blocks/gr_add_vxx.xml | 63 ---------------------- grc/data/platforms/python/blocks/gr_add_xx.xml | 63 ++++++++++++++++++++++ .../platforms/python/blocks/gr_multiply_vxx.xml | 63 ---------------------- .../platforms/python/blocks/gr_multiply_xx.xml | 63 ++++++++++++++++++++++ 6 files changed, 130 insertions(+), 130 deletions(-) delete mode 100644 grc/data/platforms/python/blocks/gr_add_vxx.xml create mode 100644 grc/data/platforms/python/blocks/gr_add_xx.xml delete mode 100644 grc/data/platforms/python/blocks/gr_multiply_vxx.xml create mode 100644 grc/data/platforms/python/blocks/gr_multiply_xx.xml (limited to 'grc/data/platforms/python') diff --git a/grc/data/platforms/python/block_tree.xml b/grc/data/platforms/python/block_tree.xml index 7e13aaff6..4e6ff01c4 100644 --- a/grc/data/platforms/python/block_tree.xml +++ b/grc/data/platforms/python/block_tree.xml @@ -42,9 +42,9 @@ Operators - gr_add_vxx + gr_add_xx gr_sub_xx - gr_multiply_vxx + gr_multiply_xx gr_divide_xx gr_nlog10_ff diff --git a/grc/data/platforms/python/blocks/Makefile.am b/grc/data/platforms/python/blocks/Makefile.am index 506648d45..a97266fba 100644 --- a/grc/data/platforms/python/blocks/Makefile.am +++ b/grc/data/platforms/python/blocks/Makefile.am @@ -59,7 +59,7 @@ dist_ourdata_DATA = \ blks2_wfm_tx.xml \ const_source_x.xml \ gr_add_const_vxx.xml \ - gr_add_vxx.xml \ + gr_add_xx.xml \ gr_agc2_xx.xml \ gr_agc_xx.xml \ gr_and_xx.xml \ @@ -124,7 +124,7 @@ dist_ourdata_DATA = \ gr_mpsk_receiver_cc.xml \ gr_mpsk_sync_cc.xml \ gr_multiply_const_vxx.xml \ - gr_multiply_vxx.xml \ + gr_multiply_xx.xml \ gr_mute_xx.xml \ gr_nlog10_ff.xml \ gr_noise_source_x.xml \ diff --git a/grc/data/platforms/python/blocks/gr_add_vxx.xml b/grc/data/platforms/python/blocks/gr_add_vxx.xml deleted file mode 100644 index 479cdaae4..000000000 --- a/grc/data/platforms/python/blocks/gr_add_vxx.xml +++ /dev/null @@ -1,63 +0,0 @@ - - - - Add - gr_add_vxx - from gnuradio import gr - gr.add_v$(type.fcn)($vlen) - - IO Type - type - enum - - - - - - - Num Inputs - num_inputs - 2 - int - - - Vec Length - vlen - 1 - int - - $num_inputs > 1 - $vlen > 0 - - in - $type - $vlen - $num_inputs - - - out - $type - $vlen - - diff --git a/grc/data/platforms/python/blocks/gr_add_xx.xml b/grc/data/platforms/python/blocks/gr_add_xx.xml new file mode 100644 index 000000000..97ed9283c --- /dev/null +++ b/grc/data/platforms/python/blocks/gr_add_xx.xml @@ -0,0 +1,63 @@ + + + + Add + gr_add_xx + from gnuradio import gr + gr.add_v$(type.fcn)($vlen) + + IO Type + type + enum + + + + + + + Num Inputs + num_inputs + 2 + int + + + Vec Length + vlen + 1 + int + + $num_inputs > 1 + $vlen > 0 + + in + $type + $vlen + $num_inputs + + + out + $type + $vlen + + diff --git a/grc/data/platforms/python/blocks/gr_multiply_vxx.xml b/grc/data/platforms/python/blocks/gr_multiply_vxx.xml deleted file mode 100644 index ea0d555b6..000000000 --- a/grc/data/platforms/python/blocks/gr_multiply_vxx.xml +++ /dev/null @@ -1,63 +0,0 @@ - - - - Multiply - gr_multiply_vxx - from gnuradio import gr - gr.multiply_v$(type.fcn)($vlen) - - IO Type - type - enum - - - - - - - Num Inputs - num_inputs - 2 - int - - - Vec Length - vlen - 1 - int - - $num_inputs > 1 - $vlen > 0 - - in - $type - $vlen - $num_inputs - - - out - $type - $vlen - - diff --git a/grc/data/platforms/python/blocks/gr_multiply_xx.xml b/grc/data/platforms/python/blocks/gr_multiply_xx.xml new file mode 100644 index 000000000..60f65c274 --- /dev/null +++ b/grc/data/platforms/python/blocks/gr_multiply_xx.xml @@ -0,0 +1,63 @@ + + + + Multiply + gr_multiply_xx + from gnuradio import gr + gr.multiply_v$(type.fcn)($vlen) + + IO Type + type + enum + + + + + + + Num Inputs + num_inputs + 2 + int + + + Vec Length + vlen + 1 + int + + $num_inputs > 1 + $vlen > 0 + + in + $type + $vlen + $num_inputs + + + out + $type + $vlen + + -- cgit