Add Leaflabs Maple to CDC probe table.

pull/36/head
mike wakerly 2013-04-07 22:50:32 -07:00
rodzic f73b485418
commit beccfbb409
2 zmienionych plików z 9 dodań i 4 usunięć

Wyświetl plik

@ -1,11 +1,12 @@
Current Version (in development)
* New driver: CP2102 (thanks Ducky).
* New prober support: LUFA Virtual Serial, Leaflabs Maple, Teensyduino.
* New driver methods: getCD, getCTS, getDSR, getDTR, setDTR, getRI, getRTS,
setRTS.
* API change: setBaudrate() has been removed; use setParameters().
* API change: open() no longer implicitly sets the baud rate. Clients should
call setParameters() immediately after open(), when necessary.
* Library version is available in `com.hoho.android.usbserial.BuildInfo`.
* Adds probe support for LUFA CDC device.
* setBaudrate() has been removed; use setParameters().
* open() no longer implicitly sets the baud rate. Clients should call
setParameters() immediately after open(), when necessary.
v0.1.0 (2012-10-12)
* New driver: CdcAcmSerialDriver.

Wyświetl plik

@ -238,6 +238,10 @@ public class CdcAcmSerialDriver extends CommonUsbSerialDriver {
new int[] {
UsbId.ATMEL_LUFA_CDC_DEMO_APP,
});
supportedDevices.put(Integer.valueOf(UsbId.VENDOR_LEAFLABS),
new int[] {
UsbId.LEAFLABS_MAPLE,
});
return supportedDevices;
}