1
0
mirror of https://github.com/mik3y/usb-serial-for-android synced 2025-06-07 16:06:10 +00:00

Add Leaflabs Maple to CDC probe table.

This commit is contained in:
mike wakerly 2013-04-07 22:50:32 -07:00
parent f73b485418
commit beccfbb409
2 changed files with 9 additions and 4 deletions

View File

@ -1,11 +1,12 @@
Current Version (in development) 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, * New driver methods: getCD, getCTS, getDSR, getDTR, setDTR, getRI, getRTS,
setRTS. 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`. * 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) v0.1.0 (2012-10-12)
* New driver: CdcAcmSerialDriver. * New driver: CdcAcmSerialDriver.

View File

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