osd-contiki/cpu/mc1322x/tools/test-grid/load-all.pl
2010-11-07 14:11:18 +00:00

19 lines
376 B
Perl
Executable file

#!/usr/bin/perl
use strict;
my $bin = shift;
my $terms = shift;
if (! $terms) {
print "Usage: $0 file.bin num-devices\n";
die;
}
for (my $t=0; $t<$terms; $t++) {
my $dev_num = 2 * $t + 1;
my $ftdi_num = $terms - $t - 1;
my $cmd = "mc1322x-load.pl -e -f $bin -t /dev/ttyUSB$dev_num -c 'bbmc -l redbee-econotag -i $ftdi_num reset' &";
print "$cmd\n";
system($cmd);
}