Releases: Avlaak/embedd-cortex-debug
Releases · Avlaak/embedd-cortex-debug
v1.14.6
v1.14.5
[1.14.5] - 2026-03-27
Fixed
- Fixed OpenOCD target hanging on disconnect on Windows. The MCU now continues running after stopping the debug session, matching the behavior of other GDB servers and Linux. The fix sends
resumeandshutdowncommands to OpenOCD via its TCL port before the process is force-killed. - Fixed Live Watch value editing so boolean literals are accepted and string-like values are escaped correctly when writing running variables.
- Fixed Live Watch value editing failing for variables with a display format specifier (e.g.
,h,,x). The format suffix is now stripped before sending the set command to GDB. - Fixed Live Watch variable values not being selectable for copying.
- Fixed Live Watch inline edit showing stale value on immediate re-edit after setting a variable.
Changed
- Update logo.
- Backed out change where we try "monitor exit". See Issue #1185.
- Increased server timeout to 10 mins.
v1.14.4
[1.14.4] - 2025-12-28
Added
- Added
livePeripheralconfiguration option for automatic peripheral register updates while program is running. When enabled, peripheral registers will be refreshed automatically at a configurable rate. Can be used independently fromliveWatch. Dynamic peripheral register updates work with embedd-peripheral-viewer version 1.7.1 or higher. In your launch.json add an object property calledlivePeripheral:"livePeripheral": { "enabled": true, "samplesPerSecond": 4 }
- Added live memory write support - peripheral register values can now be modified while the program is running (when
liveWatchorlivePeripheralis enabled). - Added "Refresh" button to Live Watch panel for manual refresh when live mode is disabled or program is stopped.
v1.14.3
[1.14.3] - 2025-12-18
Added
- Added updating peripheral register states without pausing debugging.
Changed
- Align Live Watch toolbar buttons with standard Watch view.
- Change package dependency from 'mcu-debug.peripheral-viewer' to 'embedd-team.embedd-peripheral-viewer'.
v1.14.2
[1.14.2] - 2025-12-16
Added
- Added "Remove All Expressions" and "Collapse All" buttons to Live Watch panel, similar to the standard Watch view.
Changed
- Update package name to embedd and adjust publisher.
v1.14.1
[1.14.1] - 2025-12-15
Fixed
- Fix extension launch.
v1.14.0
[1.14.0] - 2025-12-15
Added
- Added ability to edit variables in live-watch.
- Added inline editing of variable names in live-watch.
- Added inline editing of variable values in live-watch.
- Added context menu for format selection in live-watch.
Changed
- Styling unified with original watch.
- Live-watch rewritten to webview.
- Make publish script cross-platform by replacing cp with Node.js fs.cpSync.