上一页 | 下一页 |
int GC_Com_Open(int com_idx, int baud, int config, int time_out)
com_idx | 指Windows串口编号,非端口号 |
baud | 波特率,9600、19200...... |
config | 配置,假设配置N,8,1 config = 'N' << 16; config += 8 << 8; config += 1 << 0;(0代表1停止位,1代表2停止位) |
time_out | 帧超时时间,毫秒单位 |
返回值 | >=0打开成功 <0打开失败 |
int GC_Com_Close(int com_idx)
com_idx | 指Windows串口编号 |
返回值 | >=0关闭成功 <0关闭失败 |
int GC_Com_Send(int com_idx, char *buffer, int len)
com_idx | 指Windows串口编号 |
buffer | 发送缓冲区 |
len | 待发送字节数,最大1024字节 |
返回值 | 成功发送的字节数 |
int GC_Com_Rev(int com_idx, char *buffe, int len)
com_idx | 指Windows串口编号 |
buffer | 接收缓冲区 |
len | 待接收字节数,最大1024字节 |
返回值 | 实际接收的字节数 |
上一页 | 下一页 |