summaryrefslogtreecommitdiff
path: root/grc/blocks/usrp_dual_sink_x.xml
blob: 8f418becdba36e2db73eb4eded6e5827a62ceadd (plain)
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
<?xml version="1.0"?>
<!--
###################################################
##USRP Dual Sink
###################################################
 -->
<block>
	<name>USRP Dual Sink</name>
	<key>usrp_dual_sink_x</key>
	<import>from grc_gnuradio import usrp as grc_usrp</import>
	<make>grc_usrp.dual_sink_$(type.fcn)(which=$which)
self.$(id).set_interp_rate($interpolation)
self.$(id).set_frequency_a($frequency_a, verbose=True)
self.$(id).set_frequency_b($frequency_b, verbose=True)
self.$(id).set_gain_a($gain_a)
self.$(id).set_gain_b($gain_b)
#if $lo_offset_a() != float('inf')
self.$(id).set_lo_offset_a($lo_offset_a)
#end if
#if $lo_offset_b() != float('inf')
self.$(id).set_lo_offset_b($lo_offset_b)
#end if
##################################################
## Flex RF A
##################################################
#if $transmit_a.tx_enb
self.$(id).set_enable_a(True)
#end if
#if $transmit_a.auto_tr
self.$(id).set_auto_tr_a(True)
#end if
##################################################
## Flex RF B
##################################################
#if $transmit_b.tx_enb
self.$(id).set_enable_b(True)
#end if
#if $transmit_b.auto_tr
self.$(id).set_auto_tr_b(True)
#end if</make>
	<callback>set_interp_rate($interpolation)</callback>
	<callback>set_frequency_a($frequency_a)</callback>
	<callback>set_frequency_b($frequency_b)</callback>
	<callback>set_gain_a($gain_a)</callback>
	<callback>set_gain_b($gain_b)</callback>
	<param>
		<name>Input Type</name>
		<key>type</key>
		<type>enum</type>
		<option>
			<name>Complex</name>
			<key>complex</key>
			<opt>fcn:c</opt>
		</option>
		<option>
			<name>Short</name>
			<key>short</key>
			<opt>fcn:s</opt>
		</option>
	</param>
	<param>
		<name>Unit Number</name>
		<key>which</key>
		<value>0</value>
		<type>int</type>
	</param>
	<param>
		<name>Interpolation</name>
		<key>interpolation</key>
		<type>int</type>
	</param>
	<param>
		<name>Frequency A (Hz)</name>
		<key>frequency_a</key>
		<type>real</type>
	</param>
	<param>
		<name>Frequency B (Hz)</name>
		<key>frequency_b</key>
		<type>real</type>
	</param>
	<param>
		<name>LO Offset A (Hz)</name>
		<key>lo_offset_a</key>
		<value>float('inf')</value>
		<type>real</type>
		<hide>#if $lo_offset_a() == float('inf') then 'part' else 'none'#</hide>
		<option>
			<name>Default</name>
			<key>float('inf')</key>
		</option>
	</param>
	<param>
		<name>LO Offset B (Hz)</name>
		<key>lo_offset_b</key>
		<value>float('inf')</value>
		<type>real</type>
		<hide>#if $lo_offset_b() == float('inf') then 'part' else 'none'#</hide>
		<option>
			<name>Default</name>
			<key>float('inf')</key>
		</option>
	</param>
	<param>
		<name>Gain A (dB)</name>
		<key>gain_a</key>
		<value>0</value>
		<type>real</type>
	</param>
	<param>
		<name>Gain B (dB)</name>
		<key>gain_b</key>
		<value>0</value>
		<type>real</type>
	</param>
<!--
###################################################
## Flex RF A
###################################################
 -->
	<param>
		<name>Transmit A</name>
		<key>transmit_a</key>
		<value></value>
		<type>enum</type>
		<hide>#if $transmit_a.tx_enb then 'none' else 'part'#</hide>
		<option>
			<name>Unconfigured</name>
			<key></key>
			<opt>tx_enb:</opt>
			<opt>auto_tr:</opt>
		</option>
		<option>
			<name>Enable</name>
			<key>tx_enb</key>
			<opt>tx_enb:1</opt>
			<opt>auto_tr:</opt>
		</option>
		<option>
			<name>Auto T/R</name>
			<key>auto_tr</key>
			<opt>tx_enb:1</opt>
			<opt>auto_tr:1</opt>
		</option>
	</param>
<!--
###################################################
## Flex RF B
###################################################
 -->
	<param>
		<name>Transmit B</name>
		<key>transmit_b</key>
		<value></value>
		<type>enum</type>
		<hide>#if $transmit_b.tx_enb then 'none' else 'part'#</hide>
		<option>
			<name>Unconfigured</name>
			<key></key>
			<opt>tx_enb:</opt>
			<opt>auto_tr:</opt>
		</option>
		<option>
			<name>Enable</name>
			<key>tx_enb</key>
			<opt>tx_enb:1</opt>
			<opt>auto_tr:</opt>
		</option>
		<option>
			<name>Auto T/R</name>
			<key>auto_tr</key>
			<opt>tx_enb:1</opt>
			<opt>auto_tr:1</opt>
		</option>
	</param>
	<sink>
		<name>Ain</name>
		<type>$type</type>
	</sink>
	<sink>
		<name>Bin</name>
		<type>$type</type>
	</sink>
	<doc>
The USRP sink inputs 128 Megasamples per second / interpolation.

Input amplitude should be between 0 and 32767.

Flex RF boards only: The "Transmit Setting" must be configured. \
When set to "Enable" the transmitter is always on. \
When set to "Auto Transmit/Receive", the transmitter is disabled while receiving.
	</doc>
</block>