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
//! RTT (Real-Time Transfer) communication
//! 
//! This module provides RTT integration using probe-rs for embedded debugging
//! with enhanced ELF symbol detection based on probe-rs implementation analysis.

pub mod manager;
pub mod elf_parser;

// Export RTT components
pub use manager::{RttManager, ChannelInfo, ChannelDirection};
pub use elf_parser::{get_rtt_symbol_from_elf, get_elf_debug_info, ElfDebugInfo, SymbolInfo};