micropython-lib/python-ecosys/debugpy/vscode_launch_example.json

22 wiersze
571 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Micropython Attach",
"type": "debugpy",
"request": "attach",
"connect": {
"host": "localhost",
"port": 5678
},
"pathMappings": [
{
"localRoot": "${workspaceFolder}/lib/micropython-lib/python-ecosys/debugpy",
"remoteRoot": "."
}
],
// "logToFile": true,
"justMyCode": false
}
]
}