view chipsetsw/drivers/drv_app/r2d/convertanim.pl @ 48:616f63f3e501 default tip

fixed bug in etm_pkt_send() dealing with max-sized packets: this fix is needed for fc-fsio cpout command to work like it does with Pirelli's firmware (they must have made the same fix)
author Mychaela Falconia <falcon@ivan.Harhan.ORG>
date Fri, 13 Nov 2015 19:11:07 +0000
parents 509db1a7b7b8
children
line wrap: on
line source

#!perl

$nb=$ARGV[0];
$name=$ARGV[1];

for($i=0;$i<$nb;$i++)
{
   $t=sprintf "%02d",($i+1);
   $filename=$name.$t.".tga";
   print "tor2d.pl $filename image$t\n";
   system("tor2d.pl $filename image$t");
}

open(OUT,">E:\\BT\\Drivers\\Common\\R2D\\r2d_anim.c") or die "Cannot create anim file :$!\n";

for($i=0;$i<$nb;$i++)
{
   $t=sprintf "%02d",($i+1);
   print OUT "#include \"image$t.c\"\n";
}

print OUT "\n";
print OUT "#define r2d_create_anim_context() \\\n";
for($i=0;$i<$nb;$i++)
{
   $t=sprintf "%02d",($i+1);
   if ($i == ($nb-1))
   {
     print OUT "picgc[$i]=r2d_new_picture_context((UINT32*)image$t); \n";
}
else
{
print OUT "picgc[$i]=r2d_new_picture_context((UINT32*)image$t); \\\n";
}

}
close(OUT);