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

2022-09-03 10:13:45

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


答案 1

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

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

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

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

  1. 获取 USB 管理器
  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


答案 2

我不是专家,但对于所有希望连接串行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。只需打开设备上的串行端口,然后.(您必须知道设备路径和波特率。例如,我的设备是ttyMt2,波特率为96000。write

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 下载完整的项目。


推荐