probe-rs-tools 0.31.0

A collection of on chip debugging tools to communicate with microchips.
1
2
3
4
5
6
pub fn run() -> anyhow::Result<()> {
    let meta = crate::util::meta::current_meta()?;
    let meta = serde_json::to_string(&meta)?;
    println!("{meta}");
    Ok(())
}