This is an automated email from Gerrit. R. Steve McKown ([email protected]) just uploaded a new patch set to Gerrit, which you can find at http://openocd.zylin.com/1348
-- gerrit commit a71bbba1b8dd036ab62a1d46c1bec9e7a06355fa Author: R. Steve McKown <[email protected]> Date: Fri Apr 19 11:29:59 2013 -0600 Support newer OSBDM firmware OSBDM: add new VID:PID implemented in OSJTAG/OSBDM firmware somewhere between versions 30.13 and 31.21. PFLASH programming works with this patch, tested on a Freescale Kinetis TWR-K20D72M using its onboard OSBDM JTAG adapter. Note: flash program testing required hacking kinetis_write() to force longword programming, as the FTFL program section commands formulated by kinetis_write() currently fail on this board's PK20DX256VLL7 processor. Change-Id: Ib7b92ff2fe9ebf6158fb1489f554a19e96cd9651 Signed-off-by: R. Steve McKown <[email protected]> diff --git a/src/jtag/drivers/osbdm.c b/src/jtag/drivers/osbdm.c index 2560db1..15ffad9 100644 --- a/src/jtag/drivers/osbdm.c +++ b/src/jtag/drivers/osbdm.c @@ -130,8 +130,8 @@ static struct queue *queue_alloc(void) /* Lists of valid VID/PID pairs */ -static const uint16_t osbdm_vid[] = { 0x15a2, 0x15a2, 0 }; -static const uint16_t osbdm_pid[] = { 0x0042, 0x0058, 0 }; +static const uint16_t osbdm_vid[] = { 0x15a2, 0x15a2, 0x15a2, 0 }; +static const uint16_t osbdm_pid[] = { 0x0042, 0x0058, 0x005e, 0 }; struct osbdm { struct jtag_libusb_device_handle *devh; /* USB handle */ -- ------------------------------------------------------------------------------ Precog is a next-generation analytics platform capable of advanced analytics on semi-structured data. The platform includes APIs for building apps and a phenomenal toolset for data science. Developers can use our toolset for easy data analysis & visualization. Get a free account! http://www2.precog.com/precogplatform/slashdotnewsletter _______________________________________________ OpenOCD-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/openocd-devel
