Skip to content

Latest commit

 

History

History
26 lines (17 loc) · 848 Bytes

README.md

File metadata and controls

26 lines (17 loc) · 848 Bytes

jtagulator.py

run JTAGULATOR or JHACKULATOR from python

This lets you control your JTAGULATOR or JHACKULATOR from Python!

image

image

Whats this?

The module communicates with the JTAGULATOR or JHACKULATOR and exposes it as a class abstracting the serial interaction.

At the moment it only does UART unfortunately because I dont have a jtag device at hand. Jtag support will come soon(tm)!

Usage example

Plug in your JTAGULATOR or JHACKULATOR and prepare it like you would normally.

from jtagulator import JtagulatorUART

j = JtagulatorUART()
j.set_voltage(3.3)
j.get_pinout(0, 1)
print("="*10)
print(j)`