summaryrefslogtreecommitdiff
path: root/util/flash_jlink.py
diff options
context:
space:
mode:
authorCraig Hesling <hesling@chromium.org>2021-07-26 16:20:47 -0400
committerCommit Bot <commit-bot@chromium.org>2021-07-27 03:18:37 +0000
commit2a66004feba7054466ca7ead9b2ef1b626e87ca4 (patch)
treea6aa8287957729a0e4101d9db0f3992d8628d642 /util/flash_jlink.py
parentcf98c93053b7c4b9bfee4756f2ac78be43f1d0f9 (diff)
downloadchrome-ec-2a66004feba7054466ca7ead9b2ef1b626e87ca4.tar.gz
util/flash_jlink: Change JLinkRemoteServer default port
This changes the used port to JLinkRemoteServerCLExe's actual default port of 19020, so that you don't need to always specify it. BRANCH=none BUG=none TEST=JLinkRemoteServerCLExe # in background make proj-bloonchipper -j ./util/flash_jlink.py --board bloonchipper Signed-off-by: Craig Hesling <hesling@chromium.org> Change-Id: I2a3c1a10e0b5c7b9cc62001a3a26508ea3db8199 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/3055111 Reviewed-by: Josie Nordrum <josienordrum@google.com>
Diffstat (limited to 'util/flash_jlink.py')
-rwxr-xr-xutil/flash_jlink.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/flash_jlink.py b/util/flash_jlink.py
index b8422880a9..fdd0bd87a1 100755
--- a/util/flash_jlink.py
+++ b/util/flash_jlink.py
@@ -99,7 +99,7 @@ def main(argv: list):
help='JLinkExe path (default: ' + default_jlink + ')',
default=default_jlink)
- default_ip = '127.0.0.1:2551'
+ default_ip = '127.0.0.1:19020'
parser.add_argument(
'--ip', '-n',
help='IP address of J-Link or machine running JLinkRemoteServerCLExe '