scan/decode: update to IQ decoders

test
Zilog80 2023-02-16 01:54:02 +01:00
rodzic 7a47aa7630
commit a5a3945dcd
1 zmienionych plików z 4 dodań i 2 usunięć

Wyświetl plik

@ -66,7 +66,6 @@ print "\n";
my $iqraw = "rtlsdr.raw";
my $ts = "-n ".(8*$band_sr);
#$ts = "";
system("$str_rtlsdr $ts $iqraw");
my $powfile = "peaks.txt";
@ -194,9 +193,12 @@ for ($j = 0; $j < $num_peaks; $j++) {
sleep(1);
print "\n";
$ts = "-n ".(120*$band_sr);
#$ts = "";
if ($num_peaks > 0)
{
my $cmd = "$str_rtlsdr -n ".(60*$band_sr)." - $tee";
my $cmd = "$str_rtlsdr $ts - $tee";
if ($verbose) { print $cmd."\n"; }
system("$cmd"); # timeout
}