We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09aa904 commit ca4328dCopy full SHA for ca4328d
src/espIdf/tracing/gdbHeapTraceManager.ts
@@ -175,7 +175,7 @@ export class GdbHeapTraceManager {
175
workspaceFolder: string
176
) {
177
let content = `set pagination off\nset confirm off\ntarget remote :3333\n\nmon reset halt\nflushregs\n\n`;
178
- content += `tb heap_trace_start\ncommands\nmon esp sysview_mcore start ${traceFilePath}\n`;
+ content += `tb heap_trace_start\ncommands\nmon esp sysview_mcore start "${traceFilePath}"\n`;
179
content += `c\nend\n\ntb heap_trace_stop\ncommands\nmon esp sysview_mcore stop\nend\n\nc`;
180
const filePath = join(workspaceFolder, this.gdbinitFileName);
181
await writeFile(filePath, content);
0 commit comments