Skip to content

Commit 80e0b54

Browse files
authored
Merge pull request #46 from anotherlab/anotherlab-patch-1
Updated README.md
2 parents 4d96027 + aa27535 commit 80e0b54

1 file changed

Lines changed: 6 additions & 4 deletions

File tree

README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ git branch -u origin/main main
2222
git remote set-head origin -a
2323
```
2424

25+
This library currently supports Xamarin.Android and .NET 6 (and .NET 7). The demo app currently targets .NET 7, but the code was written for Xamarin.Android.
26+
2527
## Structure
2628

2729
This solution contains two projects.
@@ -52,7 +54,7 @@ This solution contains two projects.
5254
**6.** Refer to [MainActivity.cs](https://github.com/anotherlab/UsbSerialForAndroid/blob/master/UsbSerialExampleApp/MainActivity.cs) in the example app to see how connect to a serial device and read data from it.
5355

5456
## Working with unrecognized devices
55-
The UsbSerialForAndroid has been compiled with the Vendor ID/Product ID pairs for many common serial devices. If you have a device that is not defined by the library, but will work with one of the drivers, you can manually add the VID/PID pair.
57+
The UsbSerialForAndroid has been compiled with the Vendor ID/Product ID pairs for many common serial devices. If you have a device that is not defined by the library, but will work with one of the drivers, you can manually add the VID/PID pair. If you have a device that is not in the GetSupportedDevices() method for that driver, you can submit a pull request that adds the vendor and product IDs to that driver.
5658

5759
UsbSerialProber is a class to help you find and instantiate compatible
5860
UsbSerialDrivers from the tree of connected UsbDevices. Normally, you will use
@@ -75,9 +77,7 @@ List<UsbSerialDriver> drivers = prober.FindAllDrivers(usbManager);
7577
// ...
7678
```
7779

78-
Of course, nothing requires you to use UsbSerialProber at all: you can
79-
instantiate driver classes directly if you know what you're doing; just supply
80-
a compatible UsbDevice.
80+
Of course, nothing requires you to use UsbSerialProber at all: you can instantiate driver classes directly if you know what you're doing; just supply a compatible UsbDevice.
8181

8282

8383
## Compatible Devices
@@ -100,6 +100,8 @@ For other help and discussion, please join the usb-serial-for-android Google Gro
100100

101101
Pull Requests are welcome, but please include what hardware was used for testing. I do not have the hardware or the bandwidth to test the various chipsets supported by the library.
102102

103+
We will do our best to repond to reported issues. If you have a code fix or suggestion, we are only looking at changes submitted as pull requests.
104+
103105
## Author, License, and Copyright
104106

105107
This library is licensed under LGPL Version 2.1. Please see LICENSE.txt for the complete license.

0 commit comments

Comments
 (0)