Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[add] ulx3s 3.0.8 support #23

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 44 additions & 0 deletions ujprog/ujprog.c
Original file line number Diff line number Diff line change
Expand Up @@ -367,6 +367,50 @@ static struct cable_hw_map {
.tdo = 0x08,
.cbus_led = 0x00
},
{
.cable_hw = CABLE_HW_USB,
.usb_vid = 0x0403,
.usb_pid = 0x6015,
.cable_path = "ULX3S FPGA 12K v3.0.8",
.tck = 0x20,
.tms = 0x40,
.tdi = 0x80,
.tdo = 0x08,
.cbus_led = 0x00
},
{
.cable_hw = CABLE_HW_USB,
.usb_vid = 0x0403,
.usb_pid = 0x6015,
.cable_path = "ULX3S FPGA 25K v3.0.8",
.tck = 0x20,
.tms = 0x40,
.tdi = 0x80,
.tdo = 0x08,
.cbus_led = 0x00
},
{
.cable_hw = CABLE_HW_USB,
.usb_vid = 0x0403,
.usb_pid = 0x6015,
.cable_path = "ULX3S FPGA 45K v3.0.8",
.tck = 0x20,
.tms = 0x40,
.tdi = 0x80,
.tdo = 0x08,
.cbus_led = 0x00
},
{
.cable_hw = CABLE_HW_USB,
.usb_vid = 0x0403,
.usb_pid = 0x6015,
.cable_path = "ULX3S FPGA 85K v3.0.8",
.tck = 0x20,
.tms = 0x40,
.tdi = 0x80,
.tdo = 0x08,
.cbus_led = 0x00
},
{
.cable_hw = CABLE_HW_USB,
.usb_vid = 0x0403,
Expand Down