Fixed debugger waiting for main

This commit is contained in:
gator96100
2020-12-29 03:39:59 +01:00
parent 8c29c4231b
commit 654996eeee

4
.vscode/launch.json vendored
View File

@@ -58,7 +58,7 @@
},{
"type": "cortex-debug",
"request": "launch",
"name": "Debug J-Link",
"name": "Firmware debug",
"cwd": "${workspaceRoot}",
"preLaunchTask": "fullimage: clean & make",
"executable": "${workspaceRoot}/armsrc/obj/fullimage.stage1.elf",
@@ -67,7 +67,7 @@
"device": "AT91SAM7S512",
"interface": "jtag",
"serialNumber": "", //If you have more than one J-Link probe, add the serial number here.
"runToMain": true,
"runToMain": false,
"armToolchainPath": "/usr/bin/"
}
],