From: Go L. Go <go...@ya...> - 2012-05-16 19:14:34
|
Hi, I have patched xc3sprog source to works with TIAO USB Multi-Protocol Adapter (TUMPA) from here: http://www.diygadget.com/tiao-usb-multi-protocol-adapter-jtag-spi-i2c-serial.html and manual: http://www.tiaowiki.com/w/TIAO_USB_Multi_Protocol_Adapter_User%27s_Manual TUMPA uses FTDI's VID but they use their own PID 0x8a98, thus the ioftdi.cpp has to be patched: Replace line 272: ((product != 0x6001) && (product != 0x6010) && (product != 0x6006))) to: ((product != 0x6001) && (product != 0x6010) && (product != 0x8a98) && (product != 0x6006))) File cablelist.txt: add the following line: tumpa ftdi 0x0403:0x8a98:TIAO USB Multi-Protocol Adapter:1 1500000 That's it. Can someone please update the source code? I am not sure if I am allowed to do so, if yes, I can do it. thanks |