Skip to content

Commit

Permalink
Adding UrJTAG support.
Browse files Browse the repository at this point in the history
  • Loading branch information
mithro committed Jul 5, 2015
1 parent a0951b7 commit b144f0d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion platforms/atlys.py
@@ -1,6 +1,6 @@
from mibuild.generic_platform import *
from mibuild.xilinx import XilinxPlatform
from mibuild.xilinx import XC3SProg, iMPACT, Adept
from mibuild.xilinx import XC3SProg, iMPACT, Adept, UrJTAG

# There appear to be 4 x LTC2481C on the U1-SCL / U1-SDA lines connected to the Cypress

Expand Down Expand Up @@ -569,6 +569,8 @@ def create_programmer(self):
elif self.programmer == "fpgalink":
from mibuild.fpgalink_programmer import FPGALink
return FPGALink("1443:0007")
elif self.programmer == "urjtag":
return UrJTAG(cable="USBBlaster", pld="spartan-6")
else:
raise ValueError("{} programmer is not supported".format(programmer))

Expand Down

0 comments on commit b144f0d

Please sign in to comment.