mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2024-11-11 01:55:38 +08:00
55 lines
No EOL
1.9 KiB
JSON
55 lines
No EOL
1.9 KiB
JSON
{
|
|
// Use IntelliSense to learn about possible attributes.
|
|
// Hover to view descriptions of existing attributes.
|
|
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "(gdb) Attach",
|
|
"type": "cppdbg",
|
|
"request": "attach",
|
|
"program": "${cwd}/client/proxmark3",
|
|
//"processId": "${command:pickProcess}",
|
|
"processId": "${input:ProcessID}",
|
|
"MIMode": "gdb",
|
|
"setupCommands": [
|
|
{
|
|
"description": "Enable pretty-printing for gdb",
|
|
"text": "-enable-pretty-printing",
|
|
"ignoreFailures": true
|
|
}
|
|
]
|
|
},{
|
|
"name": "(gdb) Build & Launch",
|
|
"type": "cppdbg",
|
|
"request": "launch",
|
|
"program": "${cwd}/client/proxmark3",
|
|
"args": ["/dev/ttyACM0"],
|
|
"stopAtEntry": false,
|
|
"cwd": "${workspaceFolder}",
|
|
"environment": [],
|
|
"externalConsole": false,
|
|
"MIMode": "gdb",
|
|
"setupCommands": [
|
|
{
|
|
"description": "Enable pretty-printing for gdb",
|
|
"text": "-enable-pretty-printing",
|
|
"ignoreFailures": true
|
|
}
|
|
],
|
|
"preLaunchTask": "client: Debug: clean & make",
|
|
"miDebuggerPath": "/usr/bin/gdb"
|
|
}
|
|
],
|
|
"inputs": [
|
|
{
|
|
// Using Extension "Tasks Shell Input" https://marketplace.visualstudio.com/items?itemName=augustocdias.tasks-shell-input
|
|
"id": "ProcessID",
|
|
"type": "command",
|
|
"command": "shellCommand.execute",
|
|
"args": {
|
|
"command": "pgrep -n proxmark3",
|
|
}
|
|
}
|
|
]
|
|
} |