probe-rs 0.4.0

A collection of on chip debugging tools to comminicate with ARM chips.
Documentation
1
2
3
4
5
6
use std::fmt::Debug;

pub trait Register: Clone + From<u32> + Into<u32> + Sized + Debug {
    const ADDRESS: u8;
    const NAME: &'static str;
}