Fix errors in file_c4fm_rx_nogui.py

git-svn-id: http://op25.osmocom.org/svn/trunk@260 65a5c917-d112-43f1-993d-58c26a4786be
This commit is contained in:
stevie 2011-01-23 02:15:19 +00:00
parent a83cc071ce
commit 07d9c9f91a
1 changed files with 4 additions and 3 deletions

View File

@ -21,6 +21,7 @@
# Software Foundation, Inc., 51 Franklin Street, Boston, MA # Software Foundation, Inc., 51 Franklin Street, Boston, MA
# 02110-1301, USA. # 02110-1301, USA.
import cPickle
import math import math
import os import os
import sys import sys
@ -42,12 +43,12 @@ class file_c4fm_rx (gr.top_block):
# open file and info # open file and info
f = open(filename + ".info", "r") f = open(filename + ".info", "r")
info = pickle.load(f) info = cPickle.load(f)
capture_rate = info["capture-rate"] capture_rate = info["capture-rate"]
f.close() f.close()
file = gr.file_source(gr.sizeof_gr_complex, filename, True) file = gr.file_source(gr.sizeof_gr_complex, filename, True)
throttle = gr.throttle(gr.sizeof_gr_complex, capture_rate) throttle = gr.throttle(gr.sizeof_gr_complex, capture_rate)
self.connect([file, throttle]) self.connect(file, throttle)
# setup receiver attributes # setup receiver attributes
channel_rate = 125000 channel_rate = 125000
@ -139,7 +140,7 @@ if '__main__' == __name__:
from optparse import OptionParser from optparse import OptionParser
parser = OptionParser(option_class=eng_option) parser = OptionParser(option_class=eng_option)
parser.add_option("-i", "--input-file", type="String", default=None, help="path to input file [=%default]") parser.add_option("-i", "--input-file", type="string", default=None, help="path to input file [=%default]")
parser.add_option("-c", "--calibration", type="eng_float", default=0.0, help="channel frequency offset [=%default]", metavar="Hz") parser.add_option("-c", "--calibration", type="eng_float", default=0.0, help="channel frequency offset [=%default]", metavar="Hz")
parser.add_option("-s", "--squelch", type="eng_float", default=15.0, help="squelch threshold [=%default]", metavar="dB") parser.add_option("-s", "--squelch", type="eng_float", default=15.0, help="squelch threshold [=%default]", metavar="dB")
(options, args) = parser.parse_args() (options, args) = parser.parse_args()