probe-rs 0.8.0

A collection of on chip debugging tools to comminicate with microchips.
Documentation
1
2
3
4
5
6
use crate::config::ChipInfo;
use crate::error::Error;

pub trait CommunicationInterface {
    fn probe_for_chip_info(self) -> Result<Option<ChipInfo>, Error>;
}