1
0
mirror of https://github.com/mik3y/usb-serial-for-android.git synced 2026-08-11 08:22:52 +00:00

Remove setBaudRate(); do not touch line config in open().

Callers should call setParameters() after open() (and now have the option of
skipping this step where feasible.)
This commit is contained in:
mike wakerly
2013-04-07 22:40:55 -07:00
parent fe2eb8278b
commit f73b485418
6 changed files with 11 additions and 60 deletions
+3
View File
@@ -3,6 +3,9 @@ Current Version (in development)
setRTS.
* 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.