-
Notifications
You must be signed in to change notification settings - Fork 47
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
JLink: Add serial number argument to specify flashing target #118
Open
tyler-potyondy
wants to merge
1
commit into
tock:master
Choose a base branch
from
tyler-potyondy:jlink-selector
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -36,6 +36,9 @@ def __init__(self, args): | |
if platform.system() == "Windows": | ||
self.jlink_cmd = "JLink" | ||
|
||
# Obtain serial number if --jlink-serial-number argument provided | ||
self.jlink_serial_number = getattr(self.args, "jlink_serial_number") | ||
|
||
# By default we assume that jlinkexe can be used to read any address on | ||
# this board, so we set `address_maximum` to None. In some cases, | ||
# however, particularly with external flash chips, jlinkexe may not be | ||
|
@@ -196,6 +199,10 @@ def _run_jtag_commands(self, commands, binary, write=True): | |
jlink_file.name, | ||
) | ||
|
||
# Append target selector if serial number provided. | ||
if self.jlink_serial_number: | ||
jlink_command += " -USB {}".format(self.jlink_serial_number) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Eh, I guess this could lead to weird errors if you happen to supply a "serial number" with spaces or other weird characters in there. On the other hand, I don't think we should sanitize these inputs, so this seems good to me. |
||
|
||
logging.debug('Running "{}".'.format(jlink_command)) | ||
|
||
def print_output(subp): | ||
|
@@ -456,9 +463,19 @@ def run_terminal(self): | |
return | ||
|
||
logging.status("Starting JLinkExe JTAG connection.") | ||
|
||
# Include serial number specifier if `--jlink-serial-number` flag provided. | ||
jlink_serial_number_str = "" | ||
if self.jlink_serial_number: | ||
jlink_serial_number_str = ("-USB {}").format(self.jlink_serial_number) | ||
|
||
jtag_p = subprocess.Popen( | ||
"{} -device {} -if {} -speed {} -autoconnect 1 -jtagconf -1,-1".format( | ||
self.jlink_cmd, self.jlink_device, self.jlink_if, self.jlink_speed | ||
"{} -device {} -if {} -speed {} -autoconnect 1 {} --jtagconf -1,-1".format( | ||
self.jlink_cmd, | ||
self.jlink_device, | ||
self.jlink_if, | ||
self.jlink_speed, | ||
jlink_serial_number_str, | ||
).split(), | ||
stdout=subprocess.PIPE, | ||
stderr=subprocess.PIPE, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Why is this a separate paragraph?
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.
I was following the formatting above for this as a code block. Should I alter this?
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.
No, it's right / necessary for the markdown to render correctly.
Without space before 203:
Without space before 207:
As-is:
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.
No sorry I meant this is a jlink option (and only jlink) and should go with the --jlink example above.