dfu 0.4.2

The core DFU library used by DFU flasher.
Documentation
1
2
3
4
5
6
7
8
9
10
11
pub mod core;
pub mod dfuse_command;
pub mod error;
pub mod memory_layout;
pub mod status;

pub use crate::core::Dfu;
pub use crate::dfuse_command::DfuseCommand;
pub use crate::error::Error;
pub use crate::status::{State, Status};
pub use memory_layout::MemoryLayout;