Skip to content

Commit 31cf1b4

Browse files
authored
Set maximum interface speed to 50 MHz (#73)
Maximum interface speeds of up to 50 MHz are supported by J-Link (see https://www.segger.com/products/debug-probes/j-link/models/model-overview/). If a J-Link does not supported a speed, it will returned an error. Verified to work with 50 MHz on J-Link Ultra+.
1 parent 721ba82 commit 31cf1b4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pylink/jlink.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ class JLink(object):
5252
MAX_NUM_CPU_REGISTERS = 256
5353

5454
# Maximum speed (in kHz) that can be passed to `set_speed()`.
55-
MAX_JTAG_SPEED = 12000
55+
MAX_JTAG_SPEED = 50000
5656

5757
# Minimum speed (in kHz) that can be passed to `set_speed()`.
5858
MIN_JTAG_SPEED = 5

0 commit comments

Comments
 (0)