Small script fix.
This commit is contained in:
parent
4788e00042
commit
ba3b4d7daf
1 changed files with 5 additions and 1 deletions
|
@ -5,6 +5,7 @@
|
|||
# license: GPL v3
|
||||
#
|
||||
|
||||
use Time::HiRes qw(usleep nanosleep);
|
||||
my @list = <STDIN>;
|
||||
my $i = 0;
|
||||
|
||||
|
@ -15,7 +16,10 @@ foreach my $line (@list)
|
|||
{
|
||||
my $frame = hex(substr($line,2,8));
|
||||
print "Adding ". $line. " with ". ($frame >> 27). " delay\n";
|
||||
system("../client/clcc --save --pos $i --delay ". ($frame >> 27)." --frame $line");
|
||||
my $cframe = $frame & 0x07ffffff;
|
||||
#printf("0x%08x\n", $cframe);
|
||||
system("../client/clcc --save --pos $i --delay ". ($frame >> 27)." --frame $cframe");
|
||||
usleep(250000);
|
||||
$i++;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue