NAME

Hex::Record::Parser - parse intel and srec hex records

SYNOPSIS

use Hex::Record::Parser qw(parse_intel_hex parse_srec_hex);

# for intel hex record
my $hex_record = parse_intel_hex( $intel_hex_record_as_string );

# for srec hex record
my $hex_record = parse_srec_hex( $srec_hex_record_as_string );

DESCRIPTION

parse intel/srec hex files.

Functions

parse_intel_hex( $intel_hex_file_name )

Exported by Hex::Parser parses intel hex file as string. Returns Hex object.

parse_srec_hex( $srec_hex_file_name )

Exported by Hex::Parser parses srec hex file as string. Returns Hex object.

LICENSE

This is released under the Artistic License.

AUTHOR

spebern <bernhard@specht.net>