anotherlab / UsbSerialForAndroid

A Xamarin C# port of the Java usb-serial-for-android library
MIT License
160 stars 70 forks source link

STM devices #37

Closed perrypetiet closed 1 year ago

perrypetiet commented 2 years ago

STM devices are included in the Usbld.cs file but are not included in the device dictionary in the CdcAcmSerialDriver.cs file.

anotherlab commented 1 year ago

USB CDC (Communications Device Class) ACM (Abstract Control Model) is the vendor-independent driver. When I ported the library over from the original Java source, they had not defined a device dictionary. As of right now, they still have not added any devices under that driver.

Over time, people have added devices that they have used or tested to GetSupportedDevices() and submitted pull requests. If you tested some STM devices with that driver and want to add them to GetSupportedDevices, you can submit a PR with your additions and we would be happy to take it.