run JTAGULATOR or JHACKULATOR from python
This lets you control your JTAGULATOR or JHACKULATOR from Python!
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)!
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)`