Skip to content

Commit 5d6900f

Browse files
committed
V0.4.3
1 parent 7ecd959 commit 5d6900f

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11
ChangeLog
2+
3+
# V0.4.3
4+
5+
* Registers (CPU and Peripheral) now indicate with a highlighted value, which ones changed since last update
6+
* Line-based Breakpoints now visually indicate which line a breakpoint is actually set when different from what was requested. Normal VSCode behavior is to revert back to the original line when debug session ends.
7+
* Perhpieral update will try to update as much as possible instead of bailing entire peripheral update after a single memory read failure. Failed reads are now indicated with `0xffffffff`
8+
29
# V0.4.2
310

411
* Now you can toggle Hex mode for Registers and Variables independently from the Debug Panel.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "0.4.2",
2+
"version": "0.4.3",
33
"activationEvents": [
44
"onDebugResolve:cortex-debug"
55
],

src/frontend/server_console.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,7 @@ export class GDBServerConsole {
105105
this.toBackend = socket;
106106
this.ptyTerm.resume();
107107
this.clearTerminal();
108+
this.showIfFirstTime();
108109
this.debugMsg('onBackendConnect: gdb-server session connected');
109110
socket.setKeepAlive(true);
110111
socket.on('close', () => {
@@ -114,7 +115,6 @@ export class GDBServerConsole {
114115
this.ptyTerm.pause();
115116
});
116117
socket.on('data', (data) => {
117-
this.showIfFirstTime();
118118
this.ptyTerm.write(data);
119119
try {
120120
if (this.logFd >= 0) {

0 commit comments

Comments
 (0)