- 论坛徽章:
- 0
|
linux与windows串口通信发文件有问题?
参考一下我的设置
- /*******************************
- 文件名: port.h
- 功能: 串口设置
- 创建时间: 2004-10-10
- 作者: ssliao
- *******************************/
- #include <stdio.h>;
- #include <stdlib.h>;
- #include <unistd.h>;
- #include <sys/types.h>;
- #include <sys/stat.h>;
- #include <fcntl.h>;
- #include <termios.h>;
- #include <errno.h>;
- #include <string.h>;
- #include <string.h>;
- #include <signal.h>;
- #include <sys/mman.h>;
- #include <sys/socket.h>;
- #include <netinet/in.h>;
- #include <sys/ioctl.h>;
- #include <sys/select.h>;
- #define FALSE -1
- #define TRUE 0
- //#define FILEPATH "//ssliao//test//cdma.txt"
- //#define SHAREPATH "/root/program/shared.txt"
- /*********串口定义********/
- #define COM1 "/dev/ttyUART0"
- #define COM2 "/dev/ttyUART1"
- #define COM3 "/dev/ttyS2"
- #define COM4 "/dev/ttyS3"
- #define COM5 "/dev/ttyS4"
- #define COM6 "/dev/ttyS5"
- typedef struct{
- char buffer1[512];
- }shared;
- int speed_arr[] = {B230400, B115200, B38400, B19200, B9600, B4800, B2400, B1200, B300,
- B115200, B38400, B19200, B9600, B4800, B2400, B1200, B300, };
- int name_arr[] = {230400, 115200, 38400, 19200, 9600, 4800, 2400, 1200, 300,
- 115200, 38400, 19200, 9600, 4800, 2400, 1200, 300, };
- void set_speed(int fd, int speed) //设置波特率
- {
- int i;
- int status;
- struct termios Opt;
- tcgetattr(fd, &Opt);
- for ( i= 0; i < sizeof(speed_arr) / sizeof(int); i++)
- {
- if (speed == name_arr[i])
- {
- tcflush(fd, TCIOFLUSH);
- cfsetispeed(&Opt, speed_arr[i]);
- cfsetospeed(&Opt, speed_arr[i]);
- status = tcsetattr(fd, TCSANOW, &Opt);
- if (status != 0)
- perror("tcsetattr fd1");
- return;
- }
- tcflush(fd,TCIOFLUSH);
- }
- }
- int set_Parity(int fd,int databits,int stopbits,int parity) //设置校验
- {
- struct termios options;
- if ( tcgetattr( fd,&options) != 0)
- {
- perror("SetupSerial 1");
- return(FALSE);
- }
- options.c_cflag &= ~CSIZE;
- switch (databits)
- {
- case 7:
- options.c_cflag |= CS7;
- break;
- case 8:
- options.c_cflag |= CS8;
- break;
- default:
- fprintf(stderr,"Unsupported data size\n");
- return (FALSE);
- }
- switch (parity)
- {
- case 'n':
- case 'N':
- options.c_cflag &= ~PARENB; /* Clear parity enable */
- options.c_iflag &= ~INPCK; /* Enable parity checking */
- break;
- case 'o':
- case 'O':
- options.c_cflag |= (PARODD | PARENB);
- options.c_iflag |= INPCK; /* Disnable parity checking */
- break;
- case 'e':
- case 'E':
- options.c_cflag |= PARENB; /* Enable parity */
- options.c_cflag &= ~PARODD;
- options.c_iflag |= INPCK; /* Disnable parity checking */
- break;
- case 'S':
- case 's': /*as no parity*/
- options.c_cflag &= ~PARENB;
- options.c_cflag &= ~CSTOPB;
- break;
- default:
- fprintf(stderr,"Unsupported parity\n");
- return (FALSE);
- }
-
- switch (stopbits)
- {
- case 1:
- options.c_cflag &= ~CSTOPB;
- break;
- case 2:
- options.c_cflag |= CSTOPB;
- break;
- default:
- fprintf(stderr,"Unsupported stop bits\n");
- return (FALSE);
- }
- /* Set input parity option */
- if (parity != 'n')
- options.c_iflag |= INPCK;
- options.c_lflag = 0;
- options.c_oflag = 0;
- options.c_oflag |= OPOST;
- options.c_cflag |= CLOCAL | CREAD;
- options.c_cc[VTIME] =5; // 15 seconds
- options.c_cc[VMIN] = 0;
- tcflush(fd,TCIFLUSH); /* Update the options and do it NOW */
- if (tcsetattr(fd,TCSANOW,&options) != 0)
- {
- perror("SetupSerial 3");
- return (FALSE);
- }
- return (TRUE);
- }
- int OpenDev(const char *Dev) //打开串口
- {
- int fd = open( Dev, O_RDWR | O_NOCTTY); //| O_NOCTTY | O_NDELAY
- if (-1 == fd)
- {
- fprintf(stderr, "Can't Open Serial Port: %s", Dev);
- return -1;
- }
- else
- return fd;
- }
- int setcom(const char *comstr, int fd, int speed, int databits, int stopbits, int parity) //设置串口
- {
- fd = OpenDev(comstr);
- if (fd>;0)
- set_speed(fd, speed);
- else
- {
- printf("Can't Open Serial Port!\n");
- exit(0);
- }
- if (set_Parity(fd,8,1,'N')== FALSE)
- {
- printf("Set Parity Error\n");
- exit(1);
- }
- return fd;
- }
复制代码 |
|