Linux串口通信的C语言源代码
其实那个串口是一个很复杂的东西的,这玩意不是一两句话就说得清楚的。
如果要真的搞明白它,非看一本厚厚的书不可,把它完全描述出来也可以写一本书了。
在Linux下,有一个很大的好处,所有的硬件设备都虚拟成了一个文件。
成了文件,就可以很简单地操作它了,像文件一样打开关闭,的确屏蔽了它的复杂性。
下面是一个Linux的串口通信的参考代码,由我李可先整理出来的,只是实现了功能,没太多复杂的设置和环境的考虑。
这段代码包括了串口的初始化,发送数据,接收数据,只是实现功能,更多的代码请自行添加。
代码如下,仅作参考,我是参考了那个英文的资料整理出来的,不一定全对。
我李可先已尽我最大所能去精简代码了,更简单的应该不行了。
#include <stdio.h>
#include <sys/ioctl.h>
#include <fcntl.h>
#include <termios.h>
#include <stdlib.h>
struct termios tio;
int init_tty(struct termios *oldtio){
int fd;
struct termios newtio;
if((fd = open(“/dev/ttyS0”, O_RDWR)) == -1)return -1;
fcntl(fd, F_SETFL, 0);
tcgetattr(fd, oldtio);
bzero(&newtio, sizeof(newtio));
cfsetispeed(&newtio, B115200);
cfsetospeed(&newtio, B115200);
newtio.c_cflag |= CLOCAL|CREAD;
newtio.c_cflag &= ~CSIZE;
newtio.c_cflag |= CS8;
newtio.c_cflag &= ~PARENB;
newtio.c_cflag &= ~CSTOPB;
newtio.c_cflag &= ~CRTSCTS;
newtio.c_lflag &= ~(ICANON | ECHO | ECHOE | ISIG);
newtio.c_oflag &= ~OPOST;
tcflush(fd, TCIFLUSH);
newtio.c_cc[VTIME] = 100;
newtio.c_cc[VMIN] = 0;
tcsetattr(fd, TCSANOW, &newtio);
return fd;
}
int send(int ftty, char *str){
return (!write(ftty, str, strlen(str))) ? -1 : 1;
}
int read(int ftty, int streamfd){
int n, max_fd, len, count=0;
char buffer[640*500*3], *ptr = buffer;
fd_set input;
struct timeval timeout;
FD_ZERO(&input);
FD_SET(ftty, &input);
max_fd = ftty+1;
while(1){
timeout.tv_sec = 1;
timeout.tv_usec = 0;
if((n = select(max_fd, &input, NULL, NULL, &timeout)) <= 0)return -1;
else{ioctl(ftty, FIONREAD, &len);if(!len)return -1;}
len = read(ftty, ptr, len);
write(streamfd, ptr, len);
ptr += len;
count += len;
}
buffer[count] = 0;
printf(“reading %d data:%s\n”, count, buffer);
}
int main(int argc, char *argv[]){
int fd, socket = 0xff;
struct termios oldtio;
if((fd = init_tty(&oldtio)) < 0)return -1;
if(send(fd, socket) < 1)return -1;
if(socket = open(“/home/likexian/likexian.txt”, O_RDWR))read(fd, socket);
close(socket);
tcsetattr(fd, TCSANOW, &oldtio);
}