Skip to content

Commit c2eb047

Browse files
authored
Added missing 'enable' keyword
1 parent 22bee88 commit c2eb047

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/bmp.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ export class BMPServerController extends EventEmitter implements GDBServerContro
9090
const encoding = this.args.swoConfig.swoEncoding === 'manchester' ? 1 : 2;
9191

9292
if (this.args.swoConfig.source === 'probe') {
93-
commands.push(encoding === 2 ? `monitor traceswo ${swoFrequency}` : 'monitor traceswo');
93+
commands.push(encoding === 2 ? `monitor traceswo enable ${swoFrequency}` : 'monitor traceswo enable');
9494
}
9595

9696
return commands.map((c) => `interpreter-exec console "${c}"`);

0 commit comments

Comments
 (0)