We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8717d9e commit c64b5eaCopy full SHA for c64b5ea
frontends/hackrf.py
@@ -36,7 +36,7 @@ def capture(self):
36
# hackrf_transfer -H -d <serial number> -a 0 -l 32 -g 32 -r rx1.cs8
37
def arm(self):
38
try:
39
- self.hackrf_proc = subprocess.Popen(["hackrf_transfer","-H","-a","0","-l","32","-g","32","-n","10000","-r","-"],stdout=subprocess.PIPE,stderr=subprocess.PIPE,text=False)
+ self.hackrf_proc = subprocess.Popen(["hackrf_transfer","-H","-f","8100000","-s","4000000","-a","0","-l","32","-g","32","-n","10000","-r","-"],stdout=subprocess.PIPE,stderr=subprocess.PIPE,text=False)
40
except:
41
print("hackrf: could not open process")
42
sys.exit(0)
0 commit comments