Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 15 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "probe-rs-debugger",
"displayName": "Debugger for probe-rs",
"version": "0.24.2",
"version": "0.25.0",
"publisher": "probe-rs",
"description": "probe-rs Debug Adapter for VS Code.",
"author": {
Expand Down Expand Up @@ -228,6 +228,16 @@
"description": "Halt all cores on the target after reset.",
"default": false
},
"verifyBeforeFlashing": {
Comment thread
bugadani marked this conversation as resolved.
"type": "boolean",
"description": "Verify chip contents before erasing, to prevent unnecessary reprogramming.",
"default": false
},
"verifyAfterFlashing": {
"type": "boolean",
"description": "Verify chip contents after flashing.",
"default": false
},
"fullChipErase": {
"type": "boolean",
"description": "Do a full chip erase, versus page-by-page erase.",
Expand Down Expand Up @@ -591,6 +601,8 @@
"chip": "STM32H745ZITx",
"flashingConfig": {
"flashingEnabled": true,
"verifyBeforeFlashing": true,
"verifyAfterFlashing": true,
Comment thread
bugadani marked this conversation as resolved.
"haltAfterReset": true
},
Comment thread
bugadani marked this conversation as resolved.
"coreConfigs": [
Expand All @@ -614,6 +626,8 @@
"chip": "STM32H745ZITx",
"flashingConfig": {
"flashingEnabled": true,
"verifyBeforeFlashing": true,
"verifyAfterFlashing": true,
"haltAfterReset": true
},
"coreConfigs": [
Expand Down
Loading