Cdc driver: probe all Arduinos.

This commit is contained in:
mike wakerly 2012-07-15 22:19:28 -07:00
parent f2ff56ba51
commit fbf2607124
1 changed files with 1 additions and 1 deletions

View File

@ -157,7 +157,7 @@ public class CdcAcmSerialDriver implements UsbSerialDriver {
}
public static boolean probe(UsbDevice usbDevice) {
return usbDevice.getVendorId() == 0x2341 && usbDevice.getProductId() == 0x001;
return usbDevice.getVendorId() == 0x2341;
}
}