Hex-Record
view release on metacpan or search on metacpan
lib/Hex/Record.pm view on Meta::CPAN
$args{parts} = [] unless exists $args{parts};
return bless \%args, $class;
}
sub import_intel_hex {
my ($self, $hex_string) = @_;
my $addr_high_dec = 0;
my $create_part = 0;
for my $line (split m{\n\r?}, $hex_string) {
my ($addr, $type, $bytes_str) = $line =~ m{
: # intel hex start
[[:xdigit:]]{2} # bytecount
([[:xdigit:]]{4}) # addr
([[:xdigit:]]{2}) # type
([[:xdigit:]] * ) # databytes
[[:xdigit:]]{2} # checksum
}ix or next;
my @bytes = unpack('(A2)*', $bytes_str);
lib/Hex/Record.pm view on Meta::CPAN
3 => 8,
4 => undef,
5 => 4,
6 => 6,
7 => 8,
8 => 6,
9 => 4,
);
my @parts;
for my $line (split m{\n\r?}, $hex_string) {
next unless substr( $line, 0, 1 ) =~ m{s}i;
my $type = substr $line, 1, 1;
my $addr_length = $address_length_of_srec_type{$type} || next;
my ($addr, $bytes_str) = $line =~ m{
s #srec hex start
[[:xdigit:]]{1} #type
[[:xdigit:]]{2} #bytecount
( run in 1.063 second using v1.01-cache-2.11-cpan-71847e10f99 )