@@ -45,7 +45,7 @@ If using gradle kotlin use line
45
45
Add library to dependencies
46
46
``` gradle
47
47
dependencies {
48
- implementation 'com.github.mik3y:usb-serial-for-android:3.8.1 '
48
+ implementation 'com.github.mik3y:usb-serial-for-android:3.9.0 '
49
49
}
50
50
```
51
51
@@ -145,31 +145,32 @@ UsbSerialProber prober = new UsbSerialProber(customTable);
145
145
List<UsbSerialDriver > drivers = prober. findAllDrivers(usbManager);
146
146
// ...
147
147
```
148
- * Note* : as of v3.5.0 this library detects CDC devices by USB interface types instead of fixed VID+PID,
149
- so custom probers are typically not required any more for CDC devices.
148
+ * Note* : as of v3.5.0 this library detects CDC/ACM devices by USB interface types instead of fixed VID+PID,
149
+ so custom probers are typically not required any more for CDC/ACM devices.
150
150
151
151
Of course, nothing requires you to use UsbSerialProber at all: you can
152
152
instantiate driver classes directly if you know what you're doing; just supply
153
153
a compatible UsbDevice.
154
154
155
155
## Compatible Devices
156
156
157
- This library supports USB to serial converter chips:
157
+ This library supports USB to serial converter chips with specific drivers
158
158
* FTDI FT232R, FT232H, FT2232H, FT4232H, FT230X, FT231X, FT234XD
159
159
* Prolific PL2303
160
160
* Silabs CP2102, CP210*
161
- * Qinheng CH340, CH341A, CH9102
161
+ * Qinheng CH340, CH341A
162
162
163
- devices implementing the CDC/ACM protocol like
163
+ some other device specific drivers
164
+ * GsmModem devices, e.g. for Unisoc based Fibocom GSM modems
165
+ * Chrome OS CCD (Closed Case Debugging)
166
+
167
+ and devices implementing the generic CDC/ACM protocol like
168
+ * Qinheng CH9102
169
+ * Microchip MCP2221
164
170
* Arduino using ATmega32U4
165
171
* Digispark using V-USB software USB
166
- * BBC micro: bit using ARM mbed DAPLink firmware
167
172
* ...
168
173
169
- and some device specific drivers:
170
- * GsmModem devices, e.g. for Unisoc based Fibocom GSM modems
171
- * Chrome OS CCD (Closed Case Debugging)
172
-
173
174
## Help & Discussion
174
175
175
176
For common problems, see the [ FAQ] ( https://github.com/mik3y/usb-serial-for-android/wiki/FAQ ) wiki page.
0 commit comments