3 Star 2 Fork 1

hqyj/虚拟仿真服务器

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
serial.c 1.44 KB
一键复制 编辑 原始数据 按行查看 历史
天真星 提交于 2022-04-08 01:27 . 基本架构完成
#include <termios.h>
#include <errno.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <stdint.h>
#include "public.h"
extern int handle_msg_from_serial(node_t data);
#define DEV_UART "/dev/ttyUSB0"
static int fd; //串口文件描述符
static void set_opt()
{
struct termios options;
tcgetattr(fd, &options);
options.c_cflag |= ( CLOCAL | CREAD );
options.c_cflag &= ~CSIZE;
options.c_cflag &= ~CRTSCTS;
options.c_cflag |= CS8;
options.c_cflag &= ~CSTOPB;
options.c_iflag |= IGNPAR;
options.c_iflag &= ~(ICRNL | IXON);
options.c_oflag = 0;
options.c_lflag = 0;
cfsetispeed(&options, B115200);
cfsetospeed(&options, B115200);
tcsetattr(fd,TCSANOW,&options);
}
void *pthread_serial(void *arg)
{
node_t data;
int nbytes = 0;
while (1)
{
nbytes = read(fd, &data, SIZE_NODE);
if(nbytes != SIZE_NODE)
{
continue;
}
//从串口来的数据,应该上报给QT客户端
handle_msg_from_serial(data);
}
}
int serial_write(node_t data)
{
return write(fd, &data, SIZE_NODE);
}
int serial_init()
{
pthread_t pid;
fd = open(DEV_UART, O_RDWR);
if (fd < 0)
{
perror ("open uart err\n");
return -1;
}
set_opt();
return pthread_create(&pid, NULL, pthread_serial, NULL);
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/hqyj-jn/simulation-server.git
git@gitee.com:hqyj-jn/simulation-server.git
hqyj-jn
simulation-server
虚拟仿真服务器
master

搜索帮助