From 07bd878bc30f7ab54afc1e2f0055419388c3c992 Mon Sep 17 00:00:00 2001 From: Josh Blum Date: Sun, 13 Mar 2011 17:33:33 -0700 Subject: grc: moved all usrp1 and usrp2 stuff out of grc and into gr-usrp*/grc Moved grc xml files, python wrappers (USRP1 only), probe apps + freedesktop files. When the gr-usrp and gr-usrp2 directories are removed, grc will not have to change. Minor change: the freedesktop files are always installed now. This does not mean that they are installed properly with xdg, it just means that the runtime can have access to the icons. --- gr-usrp/grc/usrp_dual_source_x.xml | 243 +++++++++++++++++++++++++++++++++++++ 1 file changed, 243 insertions(+) create mode 100644 gr-usrp/grc/usrp_dual_source_x.xml (limited to 'gr-usrp/grc/usrp_dual_source_x.xml') diff --git a/gr-usrp/grc/usrp_dual_source_x.xml b/gr-usrp/grc/usrp_dual_source_x.xml new file mode 100644 index 000000000..4e1fa81d8 --- /dev/null +++ b/gr-usrp/grc/usrp_dual_source_x.xml @@ -0,0 +1,243 @@ + + + + USRP1 Dual Source + usrp_dual_source_x + USRP + from grc_gnuradio import usrp as grc_usrp + grc_usrp.dual_source_$(type.fcn)( + which=$which, + rx_ant_a=$rx_ant_a, rx_ant_b=$rx_ant_b, + rx_source_a=$rx_source_a, rx_source_b=$rx_source_b, +) +#if $format() +self.$(id).set_format(width=$format.width, shift=$format.shift) +#end if +self.$(id).set_decim_rate($decimation) +self.$(id).set_frequency_a($frequency_a, verbose=True#slurp +#if $lo_offset_a() != float('inf') +, lo_offset=$lo_offset_a#slurp +#end if +) +self.$(id).set_frequency_b($frequency_b, verbose=True#slurp +#if $lo_offset_b() != float('inf') +, lo_offset=$lo_offset_b#slurp +#end if +) +self.$(id).set_gain_a($gain_a) +self.$(id).set_gain_b($gain_b) + set_decim_rate($decimation) + set_frequency_a($frequency_a#slurp +#if $lo_offset_a() != float('inf') +, lo_offset=$lo_offset_a#slurp +#end if +) + set_frequency_b($frequency_b#slurp +#if $lo_offset_b() != float('inf') +, lo_offset=$lo_offset_b#slurp +#end if +) + set_gain_a($gain_a) + set_gain_b($gain_b) + + Output Type + type + enum + + + + + Format + format + + enum + #if $format() then '' else 'part'# + + + + + Unit Number + which + 0 + int + + + Decimation + decimation + int + + + Frequency A (Hz) + frequency_a + real + + + Frequency B (Hz) + frequency_b + real + + + LO Offset A (Hz) + lo_offset_a + float('inf') + real + #if $lo_offset_a() == float('inf') then 'part' else 'none'# + + + + LO Offset B (Hz) + lo_offset_b + float('inf') + real + #if $lo_offset_b() == float('inf') then 'part' else 'none'# + + + + Gain A (dB) + gain_a + 0 + real + + + Gain B (dB) + gain_b + 0 + real + + + + RX Antenna A + rx_ant_a + RXA + string + + + + + + + + + RX Antenna B + rx_ant_b + RXA + string + + + + + + + + RX Source A + rx_source_a + A + string + #if $rx_source_a() == 'A' then 'part' else 'none'# + + + + + RX Source B + rx_source_b + B + string + #if $rx_source_b() == 'B' then 'part' else 'none'# + + + + + Aout + $type + + + Bout + $type + + +The USRP source outputs 64 Megasamples per second / decimation. + +The "Receive Antenna Setting" selects one of the SMA connectors as the data source. \ +Flex RF boards use the "TX/RX" and "RX2" settings. \ +Basic RX and LFRX use the "RXA", "RXB", and "RXAB" settings. \ +All other boards use the "RXA" setting. + + -- cgit