Skip to content

probe-web / @probe-web/client / index / DebuggerOptions

Interface: DebuggerOptions

Defined in: debugger.ts:235

Options for Session.debugger and the Debugger constructor.

Properties

PropertyTypeDescriptionDefined in
core?numberIndex of the core to debug (default 0).debugger.ts:237
pollRunningMs?numberPoll interval while the core runs (ms, default 50). The server sends no halt events.debugger.ts:239
pollHaltedMs?numberPoll interval while the core is halted (ms, default 200).debugger.ts:241
haltTimeoutMs?numberTimeout for halt requests (ms, default 500).debugger.ts:243
stepOut?StepOutStrategyHow step('out') is performed. server asks probe-rs to step out. caller-breakpoint instead runs to the caller's return address, which the stack trace already gives us. auto (the default) picks caller-breakpoint on Xtensa, where probe-rs's step out walks the windowed register file wrongly and leaves the function's caller behind, and server everywhere else.debugger.ts:252
stepOutTimeoutMs?numberHow long step('out') waits for the caller to be reached (ms, default 5000).debugger.ts:254