上传者: jiayong01a
|
上传时间: 2022-01-04 14:42:13
|
文件大小: 1.6MB
|
文件类型: -
基于开源的android_serialport_api,实现串口数据的读写
设置设备打开的串口号和波特率 如:/dev/ttyUSB0 115200
public interface Reader {
public boolean open() throws SecurityException, IOException; //打开串口
public void close(); //关闭串口
public void beginRead();//开始读数据
public void endRead(); //停止读数据
public boolean send(byte [] bytes);//发送数据到串口
DataReceiver getDataReceiver();
}