如何在Android中读取和写入数据到COM /串行端口



我必须使用Android将数据读取和写入设备的COM端口。我正在使用javax.comm软件包,但是当我安装apk文件时,它没有显示设备的任何端口。 我需要在清单文件中添加任何权限吗?

您的问题是操作系统的问题。Android在引擎盖下运行Linux,Linux对待串行端口的方式与Windows不同。 javax.comm还包含 win32com.dll ,一个驱动程序文件,您将无法在 Android 设备上安装该文件。如果你确实找到了一种方法来实现你想要做的事情,你实际上不能在Linux环境中寻找"COM"端口。串行端口将具有不同的名称。

 Windows Com Port   Linux equivalent  
      COM 1           /dev/ttyS0  
      COM 2           /dev/ttyS1
      COM 3           /dev/ttyS2 

所以,假设,如果你的想法要奏效,你必须寻找这些名字。

幸运的是,Android确实有与USB设备接口的规定(我假设你想要连接,而不是并行或RS-232端口)。为此,您需要将设备设置为USB主机。以下是您要执行的操作:

  1. 得到一个USBManager.
  2. 找到您的设备。
  3. 获取USBInterfaceUSBEndpoint
  4. 打开连接。
  5. 传输数据。

这是我对你将如何做到这一点的粗略估计。当然,你的代码将有一个更成熟的做事方式。

String YOUR_DEVICE_NAME;
byte[] DATA;
int TIMEOUT;
USBManager manager = getApplicationContext().getSystemService(Context.USB_SERVICE);
Map<String, USBDevice> devices = manager.getDeviceList();
USBDevice mDevice = devices.get(YOUR_DEVICE_NAME);
USBDeviceConnection connection = manager.openDevice(mDevice);
USBEndpoint endpoint = device.getInterface(0).getEndpoint(0);
connection.claimInterface(device.getInterface(0), true);
connection.bulkTransfer(endpoint, DATA, DATA.length, TIMEOUT);

为您的阅读乐趣提供额外材料:http://developer.android.com/guide/topics/connectivity/usb/host.html

我不是专家,但对于所有希望连接串行RS-232端口或打开串行端口但无法通过UsbManager找到其设备的人,您可以使用以下方法找到所有设备:

mDrivers = new Vector<Driver>();
LineNumberReader r = new LineNumberReader(new FileReader("/proc/tty/drivers"));
String l;
while ((l = r.readLine()) != null) {
    String drivername = l.substring(0, 0x15).trim();
    String[] w = l.split(" +");
    if ((w.length >= 5) && (w[w.length - 1].equals("serial"))) {
        mDrivers.add(new Driver(drivername, w[w.length - 4]));
    }
}
找到所有驱动程序

后,使用如下所示的内容遍历所有驱动程序以获取所有设备:

mDevices = new Vector<File>();
File dev = new File("/dev");
File[] files = dev.listFiles();

if (files != null) {
    int i;
    for (i = 0; i < files.length; i++) {
        if (files[i].getAbsolutePath().startsWith(mDeviceRoot)) {
            Log.d(TAG, "Found new device: " + files[i]);
            mDevices.add(files[i]);
        }
    }
}

下面是Driver类构造函数,有两个成员变量:

public Driver(String name, String root) {
    mDriverName = name;
    mDeviceRoot = root;
}

要打开串行端口,您可以使用Android SerialPort API。只需打开设备上的串行端口,然后write.(您必须知道您的设备路径和波特率。例如,我的设备是波特率为 96000 的 ttyMt2。

int baudRate = Integer.parseInt("96000");
mSerialPort = new SerialPort(mDevice.getPath(), baudRate, 0);
mOutputStream = mSerialPort.getOutputStream();
byte[] bytes = hexStr2bytes("31CE");
mOutputStream.write(bytes);

与其在此代码上浪费时间,您可以从 https://github.com/licheedev/Android-SerialPort-Tool 下载完整的项目。

相关内容

  • 没有找到相关文章

最新更新