pull/4/head^2 v2.1
Felipe Herranz 2015-02-02 11:29:32 +01:00
rodzic 7fb61f861c
commit 1e80b4803f
3 zmienionych plików z 2 dodań i 2 usunięć

Plik binarny nie jest wyświetlany.

Wyświetl plik

@ -71,8 +71,8 @@ public abstract class UsbSerialDevice implements UsbSerialInterface
return new CP2102SerialDevice(device, connection); return new CP2102SerialDevice(device, connection);
else if(PL2303Ids.isDeviceSupported(vid, pid)) else if(PL2303Ids.isDeviceSupported(vid, pid))
return new PL2303SerialDevice(device, connection); return new PL2303SerialDevice(device, connection);
else if(XdcVcpIds.isDeviceSupported(vid, pid)) //else if(XdcVcpIds.isDeviceSupported(vid, pid))
return new XdcVcpSerialDevice(device, connection); //return new XdcVcpSerialDevice(device, connection);
else if(isCdcDevice(device)) else if(isCdcDevice(device))
return new CDCSerialDevice(device, connection); return new CDCSerialDevice(device, connection);
else else