mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
d83e170872
we will have to continue the work... volunteers are welcome :)
11 lines
358 B
Python
11 lines
358 B
Python
import subprocess
|
|
|
|
from mibuild.generic_programmer import GenericProgrammer
|
|
|
|
|
|
class USBBlaster(GenericProgrammer):
|
|
needs_bitreverse = False
|
|
|
|
def load_bitstream(self, bitstream_file, port=0):
|
|
usb_port = "[USB-"+str(port) + "]"
|
|
subprocess.call(["quartus_pgm", "-m", "jtag", "-c", "USB-Blaster" + usb_port, "-o", "p;" + bitstream_file])
|