srec_codec 0.0.4 copy "srec_codec: ^0.0.4" to clipboard
srec_codec: ^0.0.4 copied to clipboard

Dart 1 only

Dart library to parse and write motorola SREC

example/srec_codec_example.dart

// Copyright (c) 2017, Ravi Teja Gudapati. All rights reserved. Use of this source code
// is governed by a BSD-style license that can be found in the LICENSE file.

import 'dart:io';
import 'package:srec_codec/srec_codec.dart';

main() async {
  final String filename = 'data/srecs/iodesc_iqs.srec';
  File file = new File(filename);
  final result = await SRec.parseRecordsByteStream(file.openRead());
  print(result);
}
0
likes
30
pub points
0%
popularity

Publisher

unverified uploader

Dart library to parse and write motorola SREC

Repository (GitHub)
View/report issues

License

BSD-3-Clause (LICENSE)

Dependencies

args

More

Packages that depend on srec_codec