()
| 84 | } |
| 85 | |
| 86 | public swoAndRTTCommands(): string[] { |
| 87 | const commands = []; |
| 88 | if (this.args.swoConfig.enabled) { |
| 89 | const swocommands = this.SWOConfigurationCommands(); |
| 90 | commands.push(...swocommands); |
| 91 | } |
| 92 | return commands.concat(this.rttCommands()); |
| 93 | } |
| 94 | |
| 95 | private SWOConfigurationCommands(): string[] { |
| 96 | const portMask = '0x' + calculatePortMask(this.args.swoConfig.decoders).toString(16); |
nothing calls this directly
no test coverage detected