PyLink: Control your J-Link with Python¶
PyLink is a Python package that enables you to control your J-Link from Python. This library was developed at Square to enable us to leverage our J-Link as a part of our test infrastructure, which was written in Python.
Getting started is as simple as:
>>> import pylink
>>> jlink = pylink.JLink()
>>> jlink.open(serial_no=123456789)
>>> jlink.product_name
J-Trace Cortex-M
Getting Started¶
Debugging¶