()
| 77 | } |
| 78 | |
| 79 | public initCommands(): string[] { |
| 80 | const gdbport = this.ports[createPortName(this.args.targetProcessor)]; |
| 81 | |
| 82 | return [ |
| 83 | `target-select extended-remote localhost:${gdbport}` |
| 84 | ]; |
| 85 | } |
| 86 | |
| 87 | public liveGdbInitCommands(): string[] { |
| 88 | return this.initCommands(); |
no test coverage detected