-
Notifications
You must be signed in to change notification settings - Fork 319
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
Conversation
Download the artifacts for this pull request: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
There are two ways to handle flash programming completion:
2- Using return 0 (without exit):
I think, to cover exit, you also need to check if OpenOCD is still alive and if the process return code is zero. |
I've fixed the exit command handle @Fabricio-ESP PTAL again. |
There was a problem hiding this 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.
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
Steps to test this pull request
Provide a list of steps to test changes in this PR and required output
.vscode/settings.json
a new settingidf.jtagFlashCommandExtraArgs; ["verify", "reset"]
or using the vscode settings UI.ESP-IDF: Flash (with JTag)
. The flashing arguments should be used in the Flash task.JTAG flash arguments can be customized.
OpenOCD command will include customize JTAG flash arguments.
How has this been tested?
Test Configuration:
Checklist