- 论坛徽章:
- 0
|
- #include <termios.h>
- #include <errno.h>
- #include <stdio.h>
- #include <string.h>
- #include <sys/types.h>
- #include <sys/stat.h>
- #include <fcntl.h>
- int main()
- {
- int ret;
- int fd = open("/dev/ttyS0", O_RDWR | O_NOCTTY);
- if (-1 == fd)
- {
- perror("open serial port ttyS0 failed");
- return -1;
- }
- struct termios options;
- ret = tcgetattr(fd, &options);
- if (0 != ret)
- {
- perror("tcgetattr failed");
- close(fd);
- return -1;
- }
- tcflush(fd, TCIOFLUSH);
- cfsetispeed(&options, B115200);
- cfsetospeed(&options, B115200);
- options.c_cflag &= ~PARENB;
- options.c_cflag &= ~CSTOPB;
- options.c_cflag &= ~CSIZE;
- options.c_cflag |= CS8;
- options.c_lflag &= ~(ICANON | ECHO | ECHOE | ISIG);
- options.c_oflag &= ~OPOST;
- ret = tcsetattr(fd, TCSANOW, &options);
- if (0 != ret)
- {
- perror("tcsetattr failed");
- close(fd);
- return -1;
- }
- tcflush(fd, TCIOFLUSH);
- sleep(3);
- char buf[] = "server";
- ret = write(fd, buf, sizeof(buf));
- if (ret != sizeof(buf))
- {
- perror(strerror(errno));
- }
- sleep(3);
- close(fd);
- return 0;
- }
复制代码
- #include <termios.h>
- #include <errno.h>
- #include <stdio.h>
- #include <string.h>
- #include <sys/types.h>
- #include <sys/stat.h>
- #include <fcntl.h>
- int main()
- {
- int ret;
- int fd = open("/dev/ttyS0", O_RDWR | O_NOCTTY);
- if (-1 == fd)
- {
- perror("open serial port ttyS0 failed");
- return -1;
- }
- struct termios options;
- ret = tcgetattr(fd, &options);
- if (0 != ret)
- {
- perror("tcgetattr failed");
- close(fd);
- return -1;
- }
- tcflush(fd, TCIOFLUSH);
- cfsetispeed(&options, B115200);
- cfsetospeed(&options, B115200);
- options.c_cflag &= ~PARENB;
- options.c_cflag &= ~CSTOPB;
- options.c_cflag &= ~CSIZE;
- options.c_cflag |= CS8;
- options.c_lflag &= ~(ICANON | ECHO | ECHOE | ISIG);
- options.c_oflag &= ~OPOST;
- ret = tcsetattr(fd, TCSANOW, &options);
- if (0 != ret)
- {
- perror("tcsetattr failed");
- close(fd);
- return -1;
- }
- tcflush(fd, TCIOFLUSH);
- sleep(3);
- char buf[20] = "";
- ret = read(fd, buf, 6);
- if (ret < 0)
- {
- perror(strerror(errno));
- }
- sleep(3);
- close(fd);
- printf("Len = %d, buf = %s\n", ret, buf);
- return 0;
- }
复制代码
为什么我读出来的都是乱码呢?我用gdb跟,收的那方buf里面的数据也不对。
我用
server: cat /dev/ttyS0
client: echo test > /dev/ttyS0
显示出来的也是乱码 |
|