rxprog 1.0.2

Library implementing the Boot Mode protocol for specific Renesas microcontrollers and CLI for programming firmware images
Documentation
mod command;

/// Boot mode commands
pub mod commands;
/// Data types used by commands
pub mod data;
mod reader;

#[cfg(test)]
mod test_util;

pub use command::{Command, CommandError};

/// Prelude module providing basic data types required to implement a command.
/// Intended to be glob imported.
mod command_impl_prelude {
    pub use std::io;

    pub use super::command::*;
    pub use super::data::*;
    pub use super::reader::*;
    pub use crate::Result;
}