Skip to content

Commit b4ee9bc

Browse files
authored
Add verification options (#115)
1 parent 242dfc3 commit b4ee9bc

1 file changed

Lines changed: 15 additions & 1 deletion

File tree

package.json

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "probe-rs-debugger",
33
"displayName": "Debugger for probe-rs",
4-
"version": "0.24.2",
4+
"version": "0.25.0",
55
"publisher": "probe-rs",
66
"description": "probe-rs Debug Adapter for VS Code.",
77
"author": {
@@ -228,6 +228,16 @@
228228
"description": "Halt all cores on the target after reset.",
229229
"default": false
230230
},
231+
"verifyBeforeFlashing": {
232+
"type": "boolean",
233+
"description": "Verify chip contents before erasing, to prevent unnecessary reprogramming.",
234+
"default": false
235+
},
236+
"verifyAfterFlashing": {
237+
"type": "boolean",
238+
"description": "Verify chip contents after flashing.",
239+
"default": false
240+
},
231241
"fullChipErase": {
232242
"type": "boolean",
233243
"description": "Do a full chip erase, versus page-by-page erase.",
@@ -591,6 +601,8 @@
591601
"chip": "STM32H745ZITx",
592602
"flashingConfig": {
593603
"flashingEnabled": true,
604+
"verifyBeforeFlashing": true,
605+
"verifyAfterFlashing": true,
594606
"haltAfterReset": true
595607
},
596608
"coreConfigs": [
@@ -614,6 +626,8 @@
614626
"chip": "STM32H745ZITx",
615627
"flashingConfig": {
616628
"flashingEnabled": true,
629+
"verifyBeforeFlashing": true,
630+
"verifyAfterFlashing": true,
617631
"haltAfterReset": true
618632
},
619633
"coreConfigs": [

0 commit comments

Comments
 (0)