jtag: in MODE_XPCU don't hardcode VID/PID

This commit is contained in:
Gwenhael Goavec-Merou 2026-06-04 16:21:19 +02:00
parent 3fb071bc86
commit 052832444f
1 changed files with 1 additions and 1 deletions

View File

@ -213,7 +213,7 @@ Jtag::Jtag(const cable_t &cable, const jtag_pins_conf_t *pin_conf,
#endif #endif
case MODE_XPCU: case MODE_XPCU:
#ifdef ENABLE_XILINX_PLATFORM_CABLE_USB #ifdef ENABLE_XILINX_PLATFORM_CABLE_USB
_jtag = new XilinxPlatformCableUSB(0x03fd, 0x0013, clkHZ, _jtag = new XilinxPlatformCableUSB(cable.vid, cable.pid, clkHZ,
firmware_path, verbose); firmware_path, verbose);
break; break;
#else #else