Files
universal_ble/.vscode/launch.json
T
2024-01-24 14:23:49 +01:00

24 lines
661 B
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": "example",
"cwd": "example",
"request": "launch",
"type": "dart"
},
{
"name": "example_auto_connect",
"cwd": "example",
"request": "launch",
"type": "dart",
"args": [
"--dart-define",
"AUTO_CONNECT=true",
]
}
]
}