()
| 59 | } |
| 60 | |
| 61 | public swoAndRTTCommands(): string[] { |
| 62 | const commands = []; |
| 63 | if (this.args.swoConfig.enabled && this.args.swoConfig.source !== 'probe') { |
| 64 | const swocommands = this.SWOConfigurationCommands(); |
| 65 | commands.push(...swocommands); |
| 66 | } |
| 67 | return commands; |
| 68 | } |
| 69 | |
| 70 | private SWOConfigurationCommands(): string[] { |
| 71 | const portMask = '0x' + calculatePortMask(this.args.swoConfig.decoders).toString(16); |
nothing calls this directly
no test coverage detected