We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 22bee88 commit c2eb047Copy full SHA for c2eb047
1 file changed
src/bmp.ts
@@ -90,7 +90,7 @@ export class BMPServerController extends EventEmitter implements GDBServerContro
90
const encoding = this.args.swoConfig.swoEncoding === 'manchester' ? 1 : 2;
91
92
if (this.args.swoConfig.source === 'probe') {
93
- commands.push(encoding === 2 ? `monitor traceswo ${swoFrequency}` : 'monitor traceswo');
+ commands.push(encoding === 2 ? `monitor traceswo enable ${swoFrequency}` : 'monitor traceswo enable');
94
}
95
96
return commands.map((c) => `interpreter-exec console "${c}"`);
0 commit comments