intel_hex 1.0.0 copy "intel_hex: ^1.0.0" to clipboard
intel_hex: ^1.0.0 copied to clipboard

outdated

A Dart library that can read and write Intel HEX files. The Intel HEX format is a file format that contains binary information as ASCII text.

example/README.md

Example files #

This directory contains example files for the intel_hex library.

Intel HEX file linter #

The file "intel_hex_lint.dart" contains everything you need to validate that an Intel HEX file contains no errors. The program reads a file, and parses all records until the first "End of file" record is found. If there is any type of error (checksum not valid, wrong record block, wrong characters...) an exception is thrown.

Condensed to a few lines:

import 'package:intel_hex/intel_hex.dart';

try {
  var file = File(path).readAsStringSync();
  var hex = IntelHexFile.fromString(file);
} catch (e) {
  // handle error
}

Intel HEX file converter #

The file "convert_to_intel_hex.dart" contains everything you need to convert binary data to an Intel HEX file.

Condensed to a few lines:

import 'package:intel_hex/intel_hex.dart';

List<int> data = /* fill data */;
var hex = IntelHexFile.fromData(data);
var hexString = hex.toFileContents();

Try the executables #

You can try the example executables with a few simple commands in the project root directory:

# Runs the linter on a broken file - will display an error
dart ./example/intel_hex_lint.dart ./example/convert_to_intel_hex.dart
# Converts a file to Intel HEX
dart ./example/convert_to_intel_hex.dart ./example/convert_to_intel_hex.dart
# Runs the linter on a valid file
dart ./example/intel_hex_lint.dart ./example/convert_to_intel_hex.dart.hex
0
likes
0
pub points
63%
popularity

Publisher

unverified uploader

A Dart library that can read and write Intel HEX files. The Intel HEX format is a file format that contains binary information as ASCII text.

Repository (GitHub)
View/report issues

License

unknown (license)

More

Packages that depend on intel_hex