diff --git a/.vscode/launch.json b/.vscode/launch.json index e147a72..bbc0ab0 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -7,12 +7,19 @@ "request": "launch", "name": "Launch", "cwd": "${workspaceFolder}/nrf-app", - "programBinary": "../target/thumbv7em-none-eabihf/debug/microrust-start", "chip": "nRF52833_xxAA", "runtimeExecutable": "probe-rs-debugger", - "flashing_enabled": true, - "reset_after_flashing": true, - "rtt_enabled": true + "flashingConfig": { + "flashingEnabled": true, + "resetAfterFlashing": true, + "haltAfterReset": false + }, + + "coreConfigs": [ + { + "programBinary": "../target/thumbv7em-none-eabihf/debug/microrust-start", + } + ] } ] -} \ No newline at end of file +}