We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e9d5598 commit 6481af5Copy full SHA for 6481af5
src/flash/jtagCmd.ts
@@ -81,6 +81,9 @@ export async function jtagFlashCommand(workspace: Uri) {
81
const msg = "⚡️ Flashed Successfully (JTAG)";
82
OutputChannel.appendLineAndShow(msg, "Flash");
83
Logger.infoNotify(msg);
84
+ const closingOpenOCDMsg = "Closing OpenOCD server connection...";
85
+ OutputChannel.appendLineAndShow(closingOpenOCDMsg, "Flash");
86
+ OpenOCDManager.init().stop();
87
} catch (msg) {
88
OpenOCDManager.init().showOutputChannel(true);
89
OutputChannel.appendLine(msg, "Flash");
0 commit comments