- {
- "label": "Flash - Flash jtag",
- "type": "shell",
- "presentation": {
- "focus": true
- },
- "command": "${config:idf.pythonBinPathWin} ${workspaceRoot}/.vscode/flash_jtag.py",
- "windows": {
- "command": "${config:idf.pythonBinPathWin} ${workspaceRoot}/.vscode/flash_jtag.py"
- },
- "options": {
- "env": {
- "PATH": "${config:idf.customExtraPaths}",
- "OPENOCD_SCRIPTS": "${command:espIdf.getOpenOcdScriptValue}",
- "OPENOCD_CONFIG": "${command:espIdf.getOpenOcdConfigs}",
- "BUILD_DIR": "${workspaceRoot}\\build"
- },
- },
- "problemMatcher": [
- {
- "owner": "py",
- "fileLocation": [
- "relative",
- "${workspaceFolder}"
- ],
- "pattern": {
- "regexp": "^\\.\\.(.*):(\\d+):(\\d+):\\s+(warning|error):\\s+(.*)$",
- "file": 1,
- "line": 2,
- "column": 3,
- "severity": 4,
- "message": 5
- }
- },
- {
- "owner": "py",
- "fileLocation": "absolute",
- "pattern": {
- "regexp": "^[^\\.](.*):(\\d+):(\\d+):\\s+(warning|error):\\s+(.*)$",
- "file": 1,
- "line": 2,
- "column": 3,
- "severity": 4,
- "message": 5
- }
- }
- ]
- }
Question to extension developers:
When jtag uploading will be implemented in official extension?
Uploading via serial port takes to much time.
And in my case, impossible: my device has no serial port on pcb, jtag only
So I cannot use your extension(
Does anybody implemeted this future?
Thank you!