#!/usr/bin/env node /** * Standalone MCP server entry point. * Run with: node out/mcp/standalone.js * * Environment variables: * PROBE_TYPE - "jlink" (default), "openocd", "blackmagic" * * J-Link: * JLINK_DEVICE, JLINK_INSTALL_DIR, JLINK_INTERFACE, JLINK_SPEED, * JLINK_SERIAL, JLINK_GDB_PORT, JLINK_RTT_PORT, JLINK_SWO_PORT * JLINK_RTT_ADDR - address of the RTT control block (your _SEGGER_RTT * symbol). Lets RTT be recovered after a target reset, * which otherwise stops collection for good. * * OpenOCD: * OPENOCD_BINARY, OPENOCD_INTERFACE, OPENOCD_TARGET, * OPENOCD_GDB_PORT, OPENOCD_TELNET_PORT * * Black Magic Probe: * BMP_GDB_PATH, BMP_SERIAL_PORT, BMP_TARGET_INDEX * * Telnet proxy: * TELNET_PROXY_PORT, TELNET_PROXY_SOURCE_PORT, TELNET_PROXY_SOURCE_HOST * * Peripheral decoding: * SVD_PATH - CMSIS-SVD file for the target, enabling symbolic peripheral reads */ export {}; //# sourceMappingURL=standalone.d.ts.map