Skip to content

kwmlodozeniec/python-jlink

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 

Repository files navigation

jlink-python

Simple python module that can interface with Segger JLink using their official JLink executable on Windows and Linux.

To try it out:

import jlink
interface = jlink.JLink("Cortex-M3 r2p0, Little endian", "LPC1343", "swd", "1000", jlink_path="/home/pi/jlink/jlink_linux")
if interface.is_connected():
    interface.program(["dummy.hex"])

JLink tool needs to be installed on your machine. Either provide a full path (without the executable bit), or leave it blank if it is setup in your OS's PATH.

The default names for executables are as follows:

Linux: JLinkExe
Windows: JLink.exe
 

About

Simple python module for interfacing with Segger JLink debug probe.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages