summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/fingerprint/fingerprint-debugging.md4
-rwxr-xr-xutil/flash_jlink.py2
2 files changed, 4 insertions, 2 deletions
diff --git a/docs/fingerprint/fingerprint-debugging.md b/docs/fingerprint/fingerprint-debugging.md
index ed16d9e232..c77874e7bb 100644
--- a/docs/fingerprint/fingerprint-debugging.md
+++ b/docs/fingerprint/fingerprint-debugging.md
@@ -110,7 +110,9 @@ sensor runs at 1.8V. The pin is also not connected on the current designs.
```
```bash
-(outside) $ ./JLink_Linux_V684a_x86_64/JLinkRemoteServerCLExe -Port 2551 -select USB
+# JLinkRemoteServerCLExe will listen on port 19020 (among others) by default.
+# This can be overridden with the -Port argument.
+(outside) $ ./JLink_Linux_V684a_x86_64/JLinkRemoteServerCLExe -select USB
```
You should see the following:
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 '