2 // Use IntelliSense to learn about possible attributes.
3 // Hover to view descriptions of existing attributes.
4 // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
7 "cwd": "${workspaceFolder}",
9 "PATH": "${workspaceFolder}/../../msys2/mingw64/bin;${workspaceFolder}/../../msys2/usr/local/bin;${workspaceFolder}/../../msys2/usr/bin;${workspaceFolder}/../../msys2/bin",
15 "name": "Client: (gdb) Build & Launch",
18 "cwd": "${workspaceFolder}",
19 "program": "${cwd}/client/proxmark3",
20 "args": ["${SerialPort}"],
22 "externalConsole": true,//for ProxSpace externalConsole=true is required, because the internal cosole stops updating after a while
26 "description": "Enable pretty-printing for gdb",
27 "text": "-enable-pretty-printing",
28 "ignoreFailures": true
31 "preLaunchTask": "client: Debug: clean & make",
32 "miDebuggerPath": "${workspaceFolder}/../../msys2/mingw64/bin/gdb.exe"
34 "name": "Firmware: (J-Link) Build & Launch",
35 "type": "cortex-debug",
37 "cwd": "${workspaceRoot}",
38 "preLaunchTask": "fullimage: clean & make debug",
39 "executable": "${workspaceRoot}/armsrc/obj/fullimage.elf",
40 "serverpath": "${JLinkServerPath}",
41 "servertype": "jlink",
42 "device": "AT91SAM7S${DeviceMem}",
44 "serialNumber": "", //If you have more than one J-Link probe, add the serial number here.
46 "armToolchainPath": "${workspaceFolder}/../../msys2/mingw64/bin"