Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[VSC-1596] add idf.jtagFlashCommandExtraArgs to modify jtag flash behaviour #1450

Merged
merged 2 commits into from
Mar 25, 2025

Conversation

brianignacio5
Copy link
Collaborator

Description

Add idf.jtagFlashCommandExtraArgs configuration setting to allow customization of OpenOCD JTAG flash command.

Please review https://docs.espressif.com/projects/esp-idf/en/latest/esp32c3/api-guides/jtag-debugging/index.html#upload-application-for-debugging for possible arguments to use.

Fixes #1437

Type of change

  • New feature (non-breaking change which adds functionality)

Steps to test this pull request

Provide a list of steps to test changes in this PR and required output

  1. Open a ESP-IDF project and set in .vscode/settings.json a new setting idf.jtagFlashCommandExtraArgs; ["verify", "reset"] or using the vscode settings UI.
  2. Execute ESP-IDF: Flash (with JTag). The flashing arguments should be used in the Flash task.
  3. Observe results.
  • Expected behaviour:

JTAG flash arguments can be customized.

  • Expected output:

OpenOCD command will include customize JTAG flash arguments.

How has this been tested?

Test Configuration:

  • ESP-IDF Version: 5.3.1
  • OS (Windows,Linux and macOS): macOS

Checklist

  • PR Self Reviewed
  • Applied Code formatting
  • Added Documentation
  • Added Unit Test
  • Verified on all platforms - Windows,Linux and macOS

@brianignacio5 brianignacio5 added this to the v1.10.0 milestone Feb 28, 2025
@brianignacio5 brianignacio5 self-assigned this Feb 28, 2025
Copy link

github-actions bot commented Feb 28, 2025

Download the artifacts for this pull request:
You can test these changes by installing this VSIX by click menu View -> Command Palette..., type Install from VSIX and then select downloaded esp-idf-extension.vsix file to install the extension.

Copy link
Collaborator

@radurentea radurentea left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@Fabricio-ESP Fabricio-ESP changed the title add idf.jtagFlashCommandExtraArgs to modify jtag flash behaviour [VSC-1596] add idf.jtagFlashCommandExtraArgs to modify jtag flash behaviour Mar 6, 2025
@Fabricio-ESP
Copy link
Collaborator

The parameters are correctly being added to the flash command.
Noticed that when using "exit", Open OCD is correctly closed after flash is completed, but an error is displayed in VSCode, it might be needed to better handle the process termination.
image

Error from error log:
{"user":true,"message":"Failed to flash the device (JTag), please try again [got response: '', expecting: '0']","stack":"Error: JTAG_FLASH_FAILED\n at Ba (\dist\extension.js:2:1692958)\n at processTicksAndRejections (node:internal/process/task_queues:95:5)\n at jp (\dist\extension.js:2:1923417)\n at \dist\extension.js:2:1916893","level":"error","timestamp":"2025-03-13T18:49:50.963Z"}

@erhankur
Copy link

There are two ways to handle flash programming completion:
1 - with exit option.

if {$exit == 1} {
    shutdown    # OpenOCD process ends, telnet connection closes
}
return 0
  • OpenOCD main() returns 0
  • Extension needs to start new OpenOCD process for the next operation

2- Using return 0 (without exit):

if {$exit == 1} {
    shutdown
} 
return 0  # OpenOCD continues running, telnet connection stays open. This is the case you covered.

I think, to cover exit, you also need to check if OpenOCD is still alive and if the process return code is zero.

@brianignacio5
Copy link
Collaborator Author

I've fixed the exit command handle @Fabricio-ESP PTAL again.

Copy link
Collaborator

@Fabricio-ESP Fabricio-ESP left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks good now!
Thanks.

@brianignacio5 brianignacio5 merged commit d6e860e into master Mar 25, 2025
7 checks passed
@brianignacio5 brianignacio5 deleted the enhance/openocd-jtag-flash-args branch March 25, 2025 10:41
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

使用VScode ESP-IDF插件烧录程序出现问题 (VSC-1596)
4 participants