Android com port driver

COM порт на Android

Сейчас я расскажу, как, имея в наличии совершенно стандартное устройство на Android с поддержкой USB Host (в моем случае Nexus 7), совершенно стандартный USB Host переходник на полноразмерный разъем «мама», совершенно стандартный USB serial контроллер на чипе PL2303 (они почти все работают именно на этом чипе) и не менее стандартный цискин голубой шнурок, зайти на консоль сетевого оборудования и без всяких ограничений работать с ней. Хотя никто не мешает подключать к планшету/телефону и любое другое оборудование, работающее с командной строкой поверх RS-232.

Первым делом получаем на планшете рут-права. Иначе никак.
Вторым делом ставим Busybox. Кто не знает — это отличный комплект утилит, одна из которых нам потребуется. После установки надо запустить его и нажать в самой программе «Install», когда программа спросит про метод установки — сказать «Normal».
Затем понадобится любой приличный эмулятор терминала. Мне нравится Irssi ConnectBot.
Ну и напоследок — штатные клавиатуры плохо годятся для работы с консолью. Нам ведь нужны клавиши Tab, ctrl и прочие, верно? Да и цифры хочется иметь в верхнем ряду, над буквами, а не где-то еще. Потому — Hacker’s Keyboard. Лучше, конечно, подключить внешнюю клавиатуру, но мы пока не собираемся набивать вручную многоэкранные конфиги.

Всё готово для подключения.
Запускаем терминальный клиент, выбираем локальное подключение, и подключаем к планшету контроллер. Нужно убедиться, что он определился, хотя тут проблем не ожидается, драйвера для PL2303 уже много лет как включены в ядро Linux. Под рутом запускаем dmesg.

(если кому мелковато — кликните на картинку)
Нужно запомнить, куда смонтировало контроллер. В моем случае это всегда был /dev/ttyUSB0.

Осталось установить соединение. В комплект Busybox входит программа «microcom», она-то нам и пригодится.
Набираем в консоли «microcom -s [скорость порта] [точка монтирования устройства]».

Выход из microcom по ctrl+x. Break должен посылаться по ctrl+b (пока не проверял). Другие горячие клавиши передаются корректно.

Альтернативы?
Можно купить один из многих «Bluetooth Serial» адаптеров. Вот только такие адаптеры и стоят дороже (>$50), и требуют внешнего питания. Ни одного на аккумуляторах не видел. В лучшем случае батарейку надо самому прикрутить.
Для пользователей техники Apple есть проводное решение за те же >$50.

Источник

Android com port driver

This is a driver library for communication with Arduinos and other USB serial hardware on Android, using the Android USB Host Mode (OTG) available since Android 3.1 and working reliably since Android 4.2.

No root access, ADK, or special kernel drivers are required; all drivers are implemented in Java. You get a raw serial port with read() , write() , and other functions for use with your own protocols.

1. Add library to your project:

Add jitpack.io repository to your root build.gradle:

Add library to dependencies

2. If the app should be notified when a device is attached, add device_filter.xml to your project’s res/xml/ directory and configure in your AndroidManifest.xml .

3. Use it! Example code snippet:

then use direct read/write

or direct write + event driven read:

For a simple example, see UsbSerialExamples folder in this project.

For a more complete example with background service to stay connected while the app is not visible or rotating, see separate github project SimpleUsbTerminal.

Probing for Unrecognized Devices

Читайте также:  Андроид файлы по домашнему

Sometimes you may need to do a little extra work to support devices which usb-serial-for-android doesn’t (yet) know about — but which you know to be compatible with one of the built-in drivers. This may be the case for a brand new device or for one using a custom VID/PID pair.

UsbSerialProber is a class to help you find and instantiate compatible UsbSerialDrivers from the tree of connected UsbDevices. Normally, you will use the default prober returned by UsbSerialProber.getDefaultProber() , which uses the built-in list of well-known VIDs and PIDs that are supported by our drivers.

To use your own set of rules, create and use a custom prober:

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.

This library supports USB to serial converter chips:

  • FTDI FT232R, FT232H, FT2232H, FT4232H, FT230X, FT231X, FT234XD
  • Prolific PL2303
  • Silabs CP2102 and all other CP210x
  • Qinheng CH340, CH341A

and devices implementing the CDC/ACM protocol like

  • Arduino using ATmega32U4
  • Digispark using V-USB software USB
  • BBC micro:bit using ARM mbed DAPLink firmware
  • .

For common problems, see the FAQ wiki page.

Are you using the library? Add your project to ProjectsUsingUsbSerialForAndroid.

About

Android USB host serial driver library for CDC, FTDI, Arduino and other devices.

Источник

felhr85

My personal site about programming and tech stuff

UsbSerial: A serial port driver library for Android v4.5

Although I talked some months ago about this library and I even use it for DroidTerm, DroidTerm PRO and other professional projects, the post I wrote no reflects the truly current state of this work. It is fairly stable and has been used So here it is, a more formal and helpful description of UsbSerial for Android.

How to add UsbSerial to your project
Thanks to StephaneBg UsbSerial can be easily added to your Android Studio project via Jitpack. First add the jitpack repo into your project build.gradle.

And then add the dependency to your module’s build.gradle

Devices supported
Currently UsbSerial supports three of the most used USB to serial chipsets:
FTDI FT232 (I am not going to brick your device, trust me 🙂)
Silicon Labs CP210x
Prolific PL2303HX (at least HX version)
CH340/CH341
A new feature added here is a CDC generic driver, so it should be possible to connect devices which fits into Communications Device Class. I am open to suggestions about new supported chipsets.

UsbSerial internals: A brief description
– Internally UsbSerial works as a Producer-Consumer handler, what you write is put into a buffer and it will be consumed by a Consumer thread when previous data is sent.

– Write operations can be queued from multiple threads without problems

– Received data is received through a callback, there is no need to be polling.

– Two 16kb internal buffers for Write and Read operations.

– Android 4.2.1 or greater devices rely on Asynchronous USB api for read operations. Prior versions (Android 3.1 oldest version supported) use synchronous api due to some Android bugs. Write operations use always synchronous USB api. UsbSerial handles all of this so there is no need to worry.

– PL2303, FT232 and CP210x drivers use a list of known vid and pids to identify a correct device.

– CDC driver can be loaded automatically for a device if it has a CDC interface.

Читайте также:  Аирподсы постоянно отключаются от андроида

How to use it
First of all you need both UsbDevice and UsbDeviceConnection objects correctly initialized.

With those objects correctly initialized it is easy to start

And write what you want to send through serial port!

Download the jar file here Actually it is better to add UsbSerial using gradle as described above!!

Happy coding and reach me if you do something nice with UsbSerial! 🙂

Update (03/07/15):
Thanks to Martin Blom now it is possible to use UsbSerial with multi-interface devices (like this). The best way would be

Источник

Intel Android Virtual Com Port, список драйверов

Здесь вы можете скачать бесплатные драйвера для Intel Android Virtual Com Port. Используйте ссылки на этой странице для выбора подходящего вам драйвера и перейдите по ним для скачивания. Также вы можете найти драйвера для данного устройства используя поиск по его идентификатору и названию.

Производитель: Intel Corporation

Операционная система: 2000 XP W2k3 Vista W7 W8 W8.1 W10 XP64 W2k3x64

Дата драйвера: 2012-04-30

Версия драйвера: 1.2.0.0

Or click to download and install the driver manually

Производитель: Intel Corporation

Операционная система: 2000 XP W2k3 Vista W7 W8 W8.1 W10 XP64 W2k3x64

Дата драйвера: 2012-04-11

Версия драйвера: 5.1.2600.0

Or click to download and install the driver manually

Производитель: Intel Corporation

Операционная система: 2000 XP W2k3 Vista W7 W8 W8.1 W10 XP64 W2k3x64

Дата драйвера: 2012-04-30

Версия драйвера: 1.2.0.0

Or click to download and install the driver manually

Производитель: Intel Corporation

Операционная система: 2000 XP W2k3 Vista W7 W8 W8.1 W10 XP64 W2k3x64

Дата драйвера: 2012-04-11

Версия драйвера: 5.1.2600.0

Or click to download and install the driver manually

Производитель: Intel Corporation

Операционная система: 2000 XP W2k3 Vista W7 W8 W8.1 W10 XP64 W2k3x64

Дата драйвера: 2012-04-30

Версия драйвера: 1.2.0.0

Or click to download and install the driver manually

Производитель: Intel Corporation

Операционная система: 2000 XP W2k3 Vista W7 W8 W8.1 W10 XP64 W2k3x64

Дата драйвера: 2012-04-11

Версия драйвера: 5.1.2600.0

Or click to download and install the driver manually

Производитель: Intel Corporation

Операционная система: 2000 XP W2k3 Vista W7 W8 W8.1 W10 XP64 W2k3x64

Дата драйвера: 2012-04-30

Версия драйвера: 1.2.0.0

Or click to download and install the driver manually

Производитель: Intel Corporation

Операционная система: 2000 XP W2k3 Vista W7 W8 W8.1 W10 XP64 W2k3x64

Дата драйвера: 2012-04-11

Версия драйвера: 5.1.2600.0

Or click to download and install the driver manually

Производитель: Intel Corporation

Операционная система: 2000 XP W2k3 Vista W7 W8 W8.1 W10 XP64 W2k3x64

Дата драйвера: 2012-04-30

Версия драйвера: 1.2.0.0

Or click to download and install the driver manually

Производитель: Intel Corporation

Операционная система: 2000 XP W2k3 Vista W7 W8 W8.1 W10 XP64 W2k3x64

Дата драйвера: 2012-04-11

Версия драйвера: 5.1.2600.0

Or click to download and install the driver manually

Производитель: Intel Corporation

Операционная система: XP XP64

Дата драйвера: 2015-04-15

Версия драйвера: 1.9.0.0

Or click to download and install the driver manually

Производитель: Intel Corporation

Операционная система: XP XP64

Дата драйвера: 2013-10-30

Версия драйвера: 1.4.4.0

Or click to download and install the driver manually

Производитель: Intel Corporation

Операционная система: 2000 XP W2k3 Vista W7 W8 W8.1 W10 XP64 W2k3x64

Дата драйвера: 2012-04-30

Версия драйвера: 1.2.0.0

Or click to download and install the driver manually

Производитель: Intel Corporation

Операционная система: 2000 XP W2k3 Vista W7 W8 W8.1 W10 XP64 W2k3x64

Дата драйвера: 2012-04-11

Версия драйвера: 5.1.2600.0

Читайте также:  Android placeholder что это

Or click to download and install the driver manually

Производитель: Intel Corporation

Операционная система: XP XP64

Дата драйвера: 2012-04-11

Версия драйвера: 5.1.2600.0

Or click to download and install the driver manually

Производитель: Intel Corporation

Операционная система: XP XP64

Дата драйвера: 2015-04-15

Версия драйвера: 1.9.0.0

Or click to download and install the driver manually

Производитель: Intel Corporation

Операционная система: XP XP64

Дата драйвера: 2013-10-30

Версия драйвера: 1.4.4.0

Or click to download and install the driver manually

Производитель: Intel Corporation

Операционная система: 2000 XP W2k3 Vista W7 W8 W8.1 W10 XP64 W2k3x64

Дата драйвера: 2012-04-30

Версия драйвера: 1.2.0.0

Or click to download and install the driver manually

Производитель: Intel Corporation

Операционная система: 2000 XP W2k3 Vista W7 W8 W8.1 W10 XP64 W2k3x64

Дата драйвера: 2012-04-11

Версия драйвера: 5.1.2600.0

Or click to download and install the driver manually

Производитель: Intel Corporation

Операционная система: XP XP64

Дата драйвера: 2012-04-11

Версия драйвера: 5.1.2600.0

Or click to download and install the driver manually

Производитель: Intel Corporation

Операционная система: XP XP64

Дата драйвера: 2015-04-15

Версия драйвера: 1.9.0.0

Or click to download and install the driver manually

Производитель: Intel Corporation

Операционная система: XP XP64

Дата драйвера: 2013-10-30

Версия драйвера: 1.4.4.0

Or click to download and install the driver manually

Производитель: Intel Corporation

Операционная система: 2000 XP W2k3 Vista W7 W8 W8.1 W10 XP64 W2k3x64

Дата драйвера: 2012-04-30

Версия драйвера: 1.2.0.0

Or click to download and install the driver manually

Производитель: Intel Corporation

Операционная система: 2000 XP W2k3 Vista W7 W8 W8.1 W10 XP64 W2k3x64

Дата драйвера: 2012-04-11

Версия драйвера: 5.1.2600.0

Or click to download and install the driver manually

Производитель: Intel Corporation

Операционная система: XP XP64

Дата драйвера: 2012-04-11

Версия драйвера: 5.1.2600.0

Or click to download and install the driver manually

Производитель: Intel Corporation

Операционная система: XP XP64

Дата драйвера: 2015-04-15

Версия драйвера: 1.9.0.0

Or click to download and install the driver manually

Производитель: Intel Corporation

Операционная система: XP XP64

Дата драйвера: 2013-10-30

Версия драйвера: 1.4.4.0

Or click to download and install the driver manually

Производитель: Intel Corporation

Операционная система: 2000 XP W2k3 Vista W7 W8 W8.1 W10 XP64 W2k3x64

Дата драйвера: 2012-04-30

Версия драйвера: 1.2.0.0

Or click to download and install the driver manually

Производитель: Intel Corporation

Операционная система: 2000 XP W2k3 Vista W7 W8 W8.1 W10 XP64 W2k3x64

Дата драйвера: 2012-04-11

Версия драйвера: 5.1.2600.0

Or click to download and install the driver manually

Производитель: Intel Corporation

Операционная система: XP XP64

Дата драйвера: 2012-04-11

Версия драйвера: 5.1.2600.0

Or click to download and install the driver manually

Производитель: Intel Corporation

Операционная система: XP XP64

Дата драйвера: 2015-04-15

Версия драйвера: 1.9.0.0

Or click to download and install the driver manually

Производитель: Intel Corporation

Операционная система: XP XP64

Дата драйвера: 2013-10-30

Версия драйвера: 1.4.4.0

Or click to download and install the driver manually

Производитель: Intel Corporation

Операционная система: 2000 XP W2k3 Vista W7 W8 W8.1 W10 XP64 W2k3x64

Дата драйвера: 2012-04-30

Версия драйвера: 1.2.0.0

Or click to download and install the driver manually

Производитель: Intel Corporation

Операционная система: 2000 XP W2k3 Vista W7 W8 W8.1 W10 XP64 W2k3x64

Дата драйвера: 2012-04-11

Версия драйвера: 5.1.2600.0

Or click to download and install the driver manually

Производитель: Intel Corporation

Операционная система: XP XP64

Дата драйвера: 2012-04-11

Версия драйвера: 5.1.2600.0

Or click to download and install the driver manually

Источник

Оцените статью