USB: Support for the Evolution Scorpion robots
The attached (mostly trivial) patches adds support for the Evolution Scorpion Robots. Evolution Robotics supplies a patch against 2.6.8 with their software. My patch is based on their work, so I don't know if I can sign it off, or if you need some Evolution people to do this (which might be hard). The patch adds device ID's for some robots which is trivial. From: Søren Hauberg <hauberg@gmail.com> Acked-by: Alan Cox <alan@lxorguk.ukuu.org.uk> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de> Søren
This commit is contained in:
parent
8b2580e265
commit
c1f8ea7d35
|
@ -538,6 +538,8 @@ static struct usb_device_id id_table_combined [] = {
|
|||
{ USB_DEVICE(FTDI_VID, FTDI_TERATRONIK_VCP_PID) },
|
||||
{ USB_DEVICE(FTDI_VID, FTDI_TERATRONIK_D2XX_PID) },
|
||||
{ USB_DEVICE(EVOLUTION_VID, EVOLUTION_ER1_PID) },
|
||||
{ USB_DEVICE(EVOLUTION_VID, EVO_HYBRID_PID) },
|
||||
{ USB_DEVICE(EVOLUTION_VID, EVO_RCM4_PID) },
|
||||
{ USB_DEVICE(FTDI_VID, FTDI_ARTEMIS_PID) },
|
||||
{ USB_DEVICE(FTDI_VID, FTDI_ATIK_ATK16_PID) },
|
||||
{ USB_DEVICE(FTDI_VID, FTDI_ATIK_ATK16C_PID) },
|
||||
|
|
|
@ -430,6 +430,9 @@
|
|||
*/
|
||||
#define EVOLUTION_VID 0xDEEE /* Vendor ID */
|
||||
#define EVOLUTION_ER1_PID 0x0300 /* ER1 Control Module */
|
||||
#define EVO_8U232AM_PID 0x02FF /* Evolution robotics RCM2 (FT232AM)*/
|
||||
#define EVO_HYBRID_PID 0x0302 /* Evolution robotics RCM4 PID (FT232BM)*/
|
||||
#define EVO_RCM4_PID 0x0303 /* Evolution robotics RCM4 PID */
|
||||
|
||||
/* Pyramid Computer GmbH */
|
||||
#define FTDI_PYRAMID_PID 0xE6C8 /* Pyramid Appliance Display */
|
||||
|
|
Loading…
Reference in New Issue