├── .gitattributes ├── .gitignore ├── README.md ├── UsbSerialExamples ├── AndroidManifest.xml.original ├── Assets │ └── AboutAssets.txt ├── DeviceListActivity.cs ├── HexDump.cs ├── Properties │ ├── AndroidManifest.xml │ └── AssemblyInfo.cs ├── Resources │ ├── AboutResources.txt │ ├── Resource.Designer.cs │ ├── drawable-hdpi │ │ └── ic_launcher.png │ ├── drawable-ldpi │ │ └── ic_launcher.png │ ├── drawable-mdpi │ │ └── ic_launcher.png │ ├── layout │ │ ├── device_list_item.axml │ │ ├── main.axml │ │ └── serial_console.axml │ ├── menu │ │ └── test_console_menu.xml │ ├── values │ │ └── Strings.xml │ └── xml │ │ └── device_filter.xml ├── SerialConsoleActivity.cs └── UsbSerialExamples.csproj ├── UsbSerialForAndroid.sln ├── UsbSerialForAndroid.userprefs └── UsbSerialForAndroid ├── CdcAcmSerialPort.cs ├── Cp21xxSerialPort.cs ├── DataReceivedEventArgs.cs ├── FlowControl.cs ├── FtdiSerialPort.cs ├── Parity.cs ├── ProlificSerialPort.cs ├── Properties └── AssemblyInfo.cs ├── Resources └── Resource.Designer.cs ├── StopBits.cs ├── UsbSerialDevice.cs ├── UsbSerialDeviceEventArgs.cs ├── UsbSerialDeviceID.cs ├── UsbSerialDeviceInfo.cs ├── UsbSerialDeviceList.cs ├── UsbSerialDeviceManager.cs ├── UsbSerialForAndroid.csproj └── UsbSerialPort.cs /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysykhmd/usb-serial-for-xamarin-android/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysykhmd/usb-serial-for-xamarin-android/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysykhmd/usb-serial-for-xamarin-android/HEAD/README.md -------------------------------------------------------------------------------- /UsbSerialExamples/AndroidManifest.xml.original: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysykhmd/usb-serial-for-xamarin-android/HEAD/UsbSerialExamples/AndroidManifest.xml.original -------------------------------------------------------------------------------- /UsbSerialExamples/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysykhmd/usb-serial-for-xamarin-android/HEAD/UsbSerialExamples/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /UsbSerialExamples/DeviceListActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysykhmd/usb-serial-for-xamarin-android/HEAD/UsbSerialExamples/DeviceListActivity.cs -------------------------------------------------------------------------------- /UsbSerialExamples/HexDump.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysykhmd/usb-serial-for-xamarin-android/HEAD/UsbSerialExamples/HexDump.cs -------------------------------------------------------------------------------- /UsbSerialExamples/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysykhmd/usb-serial-for-xamarin-android/HEAD/UsbSerialExamples/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /UsbSerialExamples/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysykhmd/usb-serial-for-xamarin-android/HEAD/UsbSerialExamples/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /UsbSerialExamples/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysykhmd/usb-serial-for-xamarin-android/HEAD/UsbSerialExamples/Resources/AboutResources.txt -------------------------------------------------------------------------------- /UsbSerialExamples/Resources/Resource.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysykhmd/usb-serial-for-xamarin-android/HEAD/UsbSerialExamples/Resources/Resource.Designer.cs -------------------------------------------------------------------------------- /UsbSerialExamples/Resources/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysykhmd/usb-serial-for-xamarin-android/HEAD/UsbSerialExamples/Resources/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /UsbSerialExamples/Resources/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysykhmd/usb-serial-for-xamarin-android/HEAD/UsbSerialExamples/Resources/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /UsbSerialExamples/Resources/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysykhmd/usb-serial-for-xamarin-android/HEAD/UsbSerialExamples/Resources/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /UsbSerialExamples/Resources/layout/device_list_item.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysykhmd/usb-serial-for-xamarin-android/HEAD/UsbSerialExamples/Resources/layout/device_list_item.axml -------------------------------------------------------------------------------- /UsbSerialExamples/Resources/layout/main.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysykhmd/usb-serial-for-xamarin-android/HEAD/UsbSerialExamples/Resources/layout/main.axml -------------------------------------------------------------------------------- /UsbSerialExamples/Resources/layout/serial_console.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysykhmd/usb-serial-for-xamarin-android/HEAD/UsbSerialExamples/Resources/layout/serial_console.axml -------------------------------------------------------------------------------- /UsbSerialExamples/Resources/menu/test_console_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysykhmd/usb-serial-for-xamarin-android/HEAD/UsbSerialExamples/Resources/menu/test_console_menu.xml -------------------------------------------------------------------------------- /UsbSerialExamples/Resources/values/Strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysykhmd/usb-serial-for-xamarin-android/HEAD/UsbSerialExamples/Resources/values/Strings.xml -------------------------------------------------------------------------------- /UsbSerialExamples/Resources/xml/device_filter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysykhmd/usb-serial-for-xamarin-android/HEAD/UsbSerialExamples/Resources/xml/device_filter.xml -------------------------------------------------------------------------------- /UsbSerialExamples/SerialConsoleActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysykhmd/usb-serial-for-xamarin-android/HEAD/UsbSerialExamples/SerialConsoleActivity.cs -------------------------------------------------------------------------------- /UsbSerialExamples/UsbSerialExamples.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysykhmd/usb-serial-for-xamarin-android/HEAD/UsbSerialExamples/UsbSerialExamples.csproj -------------------------------------------------------------------------------- /UsbSerialForAndroid.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysykhmd/usb-serial-for-xamarin-android/HEAD/UsbSerialForAndroid.sln -------------------------------------------------------------------------------- /UsbSerialForAndroid.userprefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysykhmd/usb-serial-for-xamarin-android/HEAD/UsbSerialForAndroid.userprefs -------------------------------------------------------------------------------- /UsbSerialForAndroid/CdcAcmSerialPort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysykhmd/usb-serial-for-xamarin-android/HEAD/UsbSerialForAndroid/CdcAcmSerialPort.cs -------------------------------------------------------------------------------- /UsbSerialForAndroid/Cp21xxSerialPort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysykhmd/usb-serial-for-xamarin-android/HEAD/UsbSerialForAndroid/Cp21xxSerialPort.cs -------------------------------------------------------------------------------- /UsbSerialForAndroid/DataReceivedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysykhmd/usb-serial-for-xamarin-android/HEAD/UsbSerialForAndroid/DataReceivedEventArgs.cs -------------------------------------------------------------------------------- /UsbSerialForAndroid/FlowControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysykhmd/usb-serial-for-xamarin-android/HEAD/UsbSerialForAndroid/FlowControl.cs -------------------------------------------------------------------------------- /UsbSerialForAndroid/FtdiSerialPort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysykhmd/usb-serial-for-xamarin-android/HEAD/UsbSerialForAndroid/FtdiSerialPort.cs -------------------------------------------------------------------------------- /UsbSerialForAndroid/Parity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysykhmd/usb-serial-for-xamarin-android/HEAD/UsbSerialForAndroid/Parity.cs -------------------------------------------------------------------------------- /UsbSerialForAndroid/ProlificSerialPort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysykhmd/usb-serial-for-xamarin-android/HEAD/UsbSerialForAndroid/ProlificSerialPort.cs -------------------------------------------------------------------------------- /UsbSerialForAndroid/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysykhmd/usb-serial-for-xamarin-android/HEAD/UsbSerialForAndroid/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /UsbSerialForAndroid/Resources/Resource.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /UsbSerialForAndroid/StopBits.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysykhmd/usb-serial-for-xamarin-android/HEAD/UsbSerialForAndroid/StopBits.cs -------------------------------------------------------------------------------- /UsbSerialForAndroid/UsbSerialDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysykhmd/usb-serial-for-xamarin-android/HEAD/UsbSerialForAndroid/UsbSerialDevice.cs -------------------------------------------------------------------------------- /UsbSerialForAndroid/UsbSerialDeviceEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysykhmd/usb-serial-for-xamarin-android/HEAD/UsbSerialForAndroid/UsbSerialDeviceEventArgs.cs -------------------------------------------------------------------------------- /UsbSerialForAndroid/UsbSerialDeviceID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysykhmd/usb-serial-for-xamarin-android/HEAD/UsbSerialForAndroid/UsbSerialDeviceID.cs -------------------------------------------------------------------------------- /UsbSerialForAndroid/UsbSerialDeviceInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysykhmd/usb-serial-for-xamarin-android/HEAD/UsbSerialForAndroid/UsbSerialDeviceInfo.cs -------------------------------------------------------------------------------- /UsbSerialForAndroid/UsbSerialDeviceList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysykhmd/usb-serial-for-xamarin-android/HEAD/UsbSerialForAndroid/UsbSerialDeviceList.cs -------------------------------------------------------------------------------- /UsbSerialForAndroid/UsbSerialDeviceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysykhmd/usb-serial-for-xamarin-android/HEAD/UsbSerialForAndroid/UsbSerialDeviceManager.cs -------------------------------------------------------------------------------- /UsbSerialForAndroid/UsbSerialForAndroid.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysykhmd/usb-serial-for-xamarin-android/HEAD/UsbSerialForAndroid/UsbSerialForAndroid.csproj -------------------------------------------------------------------------------- /UsbSerialForAndroid/UsbSerialPort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ysykhmd/usb-serial-for-xamarin-android/HEAD/UsbSerialForAndroid/UsbSerialPort.cs --------------------------------------------------------------------------------