diff --git a/mspdebug.man b/mspdebug.man index 8f90698..f43ba72 100644 --- a/mspdebug.man +++ b/mspdebug.man @@ -89,14 +89,14 @@ connect to. Valid driver names are listed here. Connect to an eZ430-RF2500, Launchpad or Chronos device. Only USB connection is supported. .IP "\fBolimex\fR" -Connect to an Olimex MSP-JTAG-TINY device. Both USB and tty access are +Connect to an Olimex MSP430-JTAG-TINY device. Both USB and tty access are supported. .IP "\fBolimex-v1\fR" -Connect to an Olimex MSP-JTAG-TINY (V1) device. Both USB and tty access are +Connect to an Olimex MSP430-JTAG-TINY (V1) device. Both USB and tty access are supported. This driver must be used instead of \fBolimex\fR if connecting to a V1 device via a tty interface. .IP "\fBolimex-iso\fR" -Connect to an Olimex MSP-JTAG-ISO device. Both USB and tty access are +Connect to an Olimex MSP430-JTAG-ISO device. Both USB and tty access are supported. .IP "\fBolimex-iso-mk2\fR" Connect to an Olimex MSP430-JTAG-ISO-MK2 device. Both USB and tty @@ -158,7 +158,10 @@ file (MSP430.DLL for Windows, libmsp430.so for Unix-like systems) must be present in the dynamic loader search path. USB connection is not supported for this driver. This driver supports -watchpoints. +watchpoints. Note that the \fB-d\fR option for this driver passes its +argument straight through to the library's \fBMSP430_Initialize\fR +function. Any special argument supported by that function is therefore +accessible via the \fB-d\fR option. .IP "\fBgoodfet\fR" Connect to a GoodFET device. JTAG mode must be used, and only TTY access is supported. This device can be used for memory access (read, erase and diff --git a/util/usbutil.c b/util/usbutil.c index 7631857..9eab111 100644 --- a/util/usbutil.c +++ b/util/usbutil.c @@ -32,8 +32,11 @@ static const char *device_help(const struct usb_device *dev) } info[] = { {0x0451, 0xf432, "eZ430-RF2500"}, {0x0451, 0xf430, "FET430UIF"}, - {0x15ba, 0x0002, "Olimex MSP-JTAG-TINY (v1)"}, - {0x15ba, 0x0031, "Olimex MSP-JTAG-TINY (v2)"} + {0x2047, 0x0010, "FET430UIF (V3 firmware)"}, + {0x15ba, 0x0002, "Olimex MSP430-JTAG-TINY (v1)"}, + {0x15ba, 0x0008, "Olimex MSP430-JTAG-ISO"}, + {0x15ba, 0x0031, "Olimex MSP430-JTAG-TINY (v2)"}, + {0x15ba, 0x0100, "Olimex MSP430-JTAG-ISO-MK2 (v2)"} }; int i;