Christian Frey
Results
1
comments of
Christian Frey
By the way, another solution seems to be calling `exec_command` with the J-Link Commandstring JLinkDevicesXMLPath (inspired by [this link](https://wiki.segger.com/Open_Flashloader#General_Procedure)): ``` jlink = pylink.JLink() jlink.open() jlink.exec_command('JLinkDevicesXMLPath /opt/SEGGER/JLink/JLinkDevices.xml') ``` With this solution,...