Skip to main content

ihex/
lib.rs

1//
2// Copyright 2016 ihex Developers
3//
4// Licensed under the Apache License, Version 2.0, <LICENSE-APACHE or
5// http://apache.org/licenses/LICENSE-2.0> or the MIT license <LICENSE-MIT or
6// http://opensource.org/licenses/MIT>, at your option. This file may not be
7// copied, modified, or distributed except according to those terms.
8//
9
10//! # The IHEX Library
11//!
12//! A Rust library for parsing and generating Intel HEX (or IHEX) objects.
13//! This format is commonly used for representing compiled program code and
14//! data to be loaded into a microcontroller, flash memory or ROM.
15
16mod checksum;
17mod reader;
18mod record;
19mod writer;
20
21pub use checksum::*;
22pub use reader::*;
23pub use record::*;
24pub use writer::*;