Skip to content

Commit

Permalink
V0.4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
haneefdm committed Sep 5, 2021
1 parent 7ecd959 commit 5d6900f
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
ChangeLog

# V0.4.3

* Registers (CPU and Peripheral) now indicate with a highlighted value, which ones changed since last update
* 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.
* 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`

# V0.4.2

* Now you can toggle Hex mode for Registers and Variables independently from the Debug Panel.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "0.4.2",
"version": "0.4.3",
"activationEvents": [
"onDebugResolve:cortex-debug"
],
Expand Down
2 changes: 1 addition & 1 deletion src/frontend/server_console.ts
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ export class GDBServerConsole {
this.toBackend = socket;
this.ptyTerm.resume();
this.clearTerminal();
this.showIfFirstTime();
this.debugMsg('onBackendConnect: gdb-server session connected');
socket.setKeepAlive(true);
socket.on('close', () => {
Expand All @@ -114,7 +115,6 @@ export class GDBServerConsole {
this.ptyTerm.pause();
});
socket.on('data', (data) => {
this.showIfFirstTime();
this.ptyTerm.write(data);
try {
if (this.logFd >= 0) {
Expand Down

0 comments on commit 5d6900f

Please sign in to comment.