probe-rs 0.9.0

A collection of on chip debugging tools to communicate with microchips.
Documentation
use crate::DebugProbeError;

pub trait CommunicationInterface {
    fn flush(&mut self) -> Result<(), DebugProbeError>;
}