UsbSerialForAndroid icon indicating copy to clipboard operation
UsbSerialForAndroid copied to clipboard

A Xamarin C# port of the Java usb-serial-for-android library

Results 13 UsbSerialForAndroid issues
Sort by recently updated
recently updated
newest added

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

https://github.com/anotherlab/UsbSerialForAndroid/blob/b448a2cd61238dcc0268e53582ef6ec7db5908f9/UsbSerialForAndroid/driver/CdcAcmSerialDriver.cs#L365 https://github.com/anotherlab/UsbSerialForAndroid/blob/b448a2cd61238dcc0268e53582ef6ec7db5908f9/UsbSerialForAndroid/driver/Ch34xSerialDriver.cs#L183 https://github.com/anotherlab/UsbSerialForAndroid/blob/b448a2cd61238dcc0268e53582ef6ec7db5908f9/UsbSerialForAndroid/driver/FtdiSerialDriver.cs#L242 https://github.com/anotherlab/UsbSerialForAndroid/blob/b448a2cd61238dcc0268e53582ef6ec7db5908f9/UsbSerialForAndroid/driver/ProlificSerialDriver.cs#L483 https://github.com/anotherlab/UsbSerialForAndroid/blob/b448a2cd61238dcc0268e53582ef6ec7db5908f9/UsbSerialForAndroid/driver/STM32SerialDriver.cs#L196 There are 5 places in the code with the assertion that "bulkTransfer does not support offsets, make a copy." But bulkTransfer has overloaded method whith...

It would be great to have a version that supports Dotnet6 with MAUI. I could get it to work with a new project file: ``` net6.0-android true true enable 21.0...

I have a CDC device that wasn't working. After some debugging in the CDC driver code, I realised that the IN and OUT interfaces were mixed up. The code assumes...

So far it worked fine and there were no issues with FTDI. Now, I’m trying to work with a device which uses CP21xx driver which has two ports - “standard”...

Device in title is not recognized as the correct device type of HXN, but rather type T. This results in an IOException. It's because it does not do the TestHxStatus()...

On Android 14, There are 2 problems 1. Receiver_Export issue ![image](https://github.com/anotherlab/UsbSerialForAndroid/assets/138612312/c8bedd92-7259-497c-a91c-d38be305286d) this error occurs on the following code line, UsbSerialForAndroid/Extensions/UsbManagerExtensions.cs context.RegisterReceiver(usbPermissionReceiver, new IntentFilter(ACTION_USB_PERMISSION)); I changed it to following if (Build.VERSION.SdkInt...

Hello everyone, I have a problem regarding the device's permissions to access the list of connected USBs. Once authorization is given, it works correctly every time the list is requested...

This happens as long as monoandroid5.0 is specified as the targetframework in the UsbSerialForAndroid project. If I remove monoandroid5.0, then the error does not occur. Visual Studio Version 17.6.2 Xamarin.Android...

step1: I create new project in Xamarin android My project name is USBComm. step2: I added the UsbSerialForAndroid lib folder in my project folder, references also added. step3: then I...