Add package workaround, transient option.

git-svn-id: http://op25.osmocom.org/svn/trunk@197 65a5c917-d112-43f1-993d-58c26a4786be
This commit is contained in:
stevie 2009-12-18 11:08:16 +00:00
parent 21e12880d7
commit 87b8b738f8
1 changed files with 7 additions and 2 deletions

View File

@ -36,6 +36,7 @@ from usrpm import usrp_dbid
# Python is doing strange things to our packages
# So we try to handle it here
try:
from gnuradio import fsk4, op25
except Exception:
@ -79,6 +80,7 @@ class p25_rx_block (stdgui2.std_top_block):
parser.add_option("-w", "--wait", action="store_true", default=False, help="block on startup")
parser.add_option("-R", "--rx-subdev-spec", type="subdev", default=(0, 0), help="select USRP Rx side A or B (default=A)")
parser.add_option("-g", "--gain", type="eng_float", default=None, help="set USRP gain in dB (default is midpoint)")
parser.add_option("-t", "--transient", action="store_true", default=False, help="enable transient captures")
(options, args) = parser.parse_args()
if len(args) != 0:
parser.print_help()
@ -94,10 +96,13 @@ class p25_rx_block (stdgui2.std_top_block):
self.open_file(options.input)
elif options.frequency:
self._set_state("CAPTURING")
self.open_usrp(options.rx_subdev_spec, options.decim, options.gain, options.frequency, True)
self.open_usrp(options.rx_subdev_spec, options.decim, options.gain, options.frequency, options.transient)
else:
self._set_state("STOPPED")
# save cmd-line options
self.options = options
# setup common flow graph elements
#
def __build_graph(self, source, capture_rate):
@ -407,7 +412,7 @@ class p25_rx_block (stdgui2.std_top_block):
self.stop()
self.wait()
# ToDo: get open_usrp() arguments from wizard
self.open_usrp((0,0), 256, None, 434.08e06, True) # Test freq
self.open_usrp(self.options.rx_subdev_spec, self.options.decim, self.options.gain, self.options.frequency, not self.options.transient)
self.start()
# Open an existing capture