Help for this page

Select Code to Download


  1. or download this
    open my $data, '<', "data.bin";
    binmode($data);
    ...
        binmode($file);
        print $file $buf;
    }
    
  2. or download this
    open my $data, '<', "data.bin";
    binmode($data);
    ...
        read $flash, my $buf, 0x200;
        print $file $buf;
    }