probe-rs 0.16.0

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

/// Information about a chip which is used
/// for automatic detection of the connected chip.
///
/// For ARM-based chips, the function [ArmProbeInterface::read_from_rom_table] is
/// used to read the information from the target.
///
/// [ArmProbeInterface::read_from_rom_table]: crate::architecture::arm::communication_interface::ArmProbeInterface::read_from_rom_table
#[derive(Debug)]
pub(crate) enum ChipInfo {
    /// ARM specific information for chip
    /// auto-detection. See [ArmChipInfo].
    Arm(ArmChipInfo),
}

impl From<ArmChipInfo> for ChipInfo {
    fn from(info: ArmChipInfo) -> Self {
        ChipInfo::Arm(info)
    }
}