Fix old references to device_index from hackrf_sweep merge

This commit is contained in:
Mike Walters 2017-02-14 13:40:23 +00:00
parent 7fa0985133
commit e73e921440

View File

@ -461,7 +461,7 @@ class HackRFSweepThread(BasePowerThread):
"""Thread which runs hackrf_sweep process""" """Thread which runs hackrf_sweep process"""
def setup(self, start_freq=0, stop_freq=6000, bin_size=1000, def setup(self, start_freq=0, stop_freq=6000, bin_size=1000,
interval=0.0, gain=40, ppm=0, crop=0, single_shot=False, interval=0.0, gain=40, ppm=0, crop=0, single_shot=False,
device_index=0, sample_rate=20000000): device=0, sample_rate=20000000):
"""Setup hackrf_sweep params""" """Setup hackrf_sweep params"""
# theoretically we can support bins smaller than 40 kHz, but it is # theoretically we can support bins smaller than 40 kHz, but it is
# unlikely to result in acceptable performance # unlikely to result in acceptable performance
@ -490,7 +490,7 @@ class HackRFSweepThread(BasePowerThread):
"start_freq": start_freq, # MHz "start_freq": start_freq, # MHz
"stop_freq": stop_freq, # MHz "stop_freq": stop_freq, # MHz
"hops": 0, "hops": 0,
"device_index": 0, "device": 0,
"sample_rate": 20e6, # sps "sample_rate": 20e6, # sps
"bin_size": bin_size, # kHz "bin_size": bin_size, # kHz
"interval": 0, # seconds "interval": 0, # seconds