mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
13 lines
428 B
Python
13 lines
428 B
Python
import subprocess
|
|
|
|
from migen.build.generic_programmer import GenericProgrammer
|
|
|
|
|
|
class USBBlaster(GenericProgrammer):
|
|
needs_bitreverse = False
|
|
|
|
def load_bitstream(self, bitstream_file, port=0):
|
|
usb_port = "[USB-{}]".format(port)
|
|
subprocess.call(["quartus_pgm", "-m", "jtag", "-c",
|
|
"USB-Blaster{}".format(usb_port), "-o",
|
|
"p;{}".format(bitstream_file)])
|