Skip to content

Commit

Permalink
Add launch config from 'fix-combo-timeout-bug' branch (as an example)
Browse files Browse the repository at this point in the history
  • Loading branch information
HelloThisIsFlo committed Jan 1, 2024
1 parent 8fdfe5b commit 1dc391f
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
// 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": "Run/Debug: tests/combo/overlapping-combos-4-different-timeouts",
"type": "cppdbg",
"request": "launch",
"program": "/workspaces/zmk/app/build/tests/combo/overlapping-combos-4-different-timeouts/zephyr/zmk.exe",
"args": [],
"stopAtEntry": false,
"cwd": ".",
"environment": [],
"externalConsole": false,
"MIMode": "gdb",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
},
{
"description": "Set Disassembly Flavor to Intel",
"text": "-gdb-set disassembly-flavor intel",
"ignoreFailures": true
}
]
}
]
}

0 comments on commit 1dc391f

Please sign in to comment.