File: iio_modulo_ff.xml

package info (click to toggle)
gr-iio 0.3-9
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 2,144 kB
  • sloc: cpp: 3,151; sh: 230; lex: 107; yacc: 104; python: 61; makefile: 11; ansic: 9
file content (30 lines) | stat: -rw-r--r-- 584 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?xml version="1.0"?>
<block>
	<name>Modulo</name>
	<key>iio_modulo_ff</key>
	<category>[Industrial IO]/Math Operators</category>
	<import>from gnuradio import iio</import>
	<make>iio.modulo_ff($vlen)</make>
	<param>
		<name>Vec Length</name>
		<key>vlen</key>
		<value>1</value>
		<type>int</type>
	</param>
	<check>$vlen &gt; 0</check>
	<sink>
		<name>in</name>
		<type>float</type>
		<vlen>$vlen</vlen>
	</sink>
	<sink>
		<name>mod</name>
		<type>float</type>
		<vlen>$vlen</vlen>
	</sink>
	<source>
		<name>out</name>
		<type>float</type>
		<vlen>$vlen</vlen>
	</source>
</block>