embedded-debugger-mcp 0.1.0

A Model Context Protocol server for embedded debugging with probe-rs - supports ARM Cortex-M, RISC-V debugging via J-Link, ST-Link, and more
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Flash programming and management

pub mod manager;

pub use manager::{
    FlashManager, 
    EraseType, 
    FileFormat, 
    EraseResult, 
    ProgramResult, 
    VerifyResult, 
    VerifyMismatch
};