From 6a2d514fab10f692d49f724d1d09afce1c603fa0 Mon Sep 17 00:00:00 2001
From: Johnathan Corgan
Date: Thu, 14 Jun 2012 10:09:14 -0700
Subject: blocks: added multiply_xx, some cleanup on add_xx
---
gr-blocks/grc/blocks_multiply_xx.xml | 63 ++++++++++++++++++++++++++++++++++++
1 file changed, 63 insertions(+)
create mode 100644 gr-blocks/grc/blocks_multiply_xx.xml
(limited to 'gr-blocks/grc/blocks_multiply_xx.xml')
diff --git a/gr-blocks/grc/blocks_multiply_xx.xml b/gr-blocks/grc/blocks_multiply_xx.xml
new file mode 100644
index 000000000..d1578ca11
--- /dev/null
+++ b/gr-blocks/grc/blocks_multiply_xx.xml
@@ -0,0 +1,63 @@
+
+
+
+ Multiply
+ blocks_multiply_xx
+ from gnuradio import blocks
+ 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
+
+
+
--
cgit
From 59f49f4663d5795adc7d7cc573d24c0747afad0f Mon Sep 17 00:00:00 2001
From: Johnathan Corgan
Date: Sat, 16 Jun 2012 12:07:58 -0700
Subject: blocks: completed transition of add and multiply blocks
* gr::blocks::add_*
* gr::blocks::add_const_*
* gr::blocks::add_const_v*
* gr::blocks::multiply_*
* gr::blocks::multiply_const_*
* gr::blocks::multiply_const_v*
Each of these has ss, ii, ff, and cc versions, for a total of
24 blocks.
---
gr-blocks/grc/blocks_multiply_xx.xml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
(limited to 'gr-blocks/grc/blocks_multiply_xx.xml')
diff --git a/gr-blocks/grc/blocks_multiply_xx.xml b/gr-blocks/grc/blocks_multiply_xx.xml
index d1578ca11..15f024142 100644
--- a/gr-blocks/grc/blocks_multiply_xx.xml
+++ b/gr-blocks/grc/blocks_multiply_xx.xml
@@ -9,7 +9,7 @@
Multiply
blocks_multiply_xx
from gnuradio import blocks
- gr.multiply_v$(type.fcn)($vlen)
+ blocks.multiply_v$(type.fcn)($vlen)
IO Type
type
--
cgit