我正在通过串行 RS232 将数据字节从 linux 发送到 windows,然后一切正常,只有我必须处理从 linux 发送的 0xa,因为 windows 将其读取为 0xd + 0xa。但是当我从 windows 向 linux 发送数据字节时,一些字节被替换为 - windows 发送 - 0xd linux 接收 0xa windows 发送 - 0x11 linux 接收垃圾类型值整数 8200
请解释当我从 Windows 向 Linux 发送数据时出了什么问题。提前致谢
Windows 串口初始化
char *pcCommPort = "COM1";
hCom = CreateFile( TEXT("COM1"),
GENERIC_READ | GENERIC_WRITE,
0, // must be opened with exclusive-access
NULL, // no security attributes
OPEN_EXISTING, // must use OPEN_EXISTING
0, // not overlapped I/O
NULL // hTemplate must be NULL for comm devices
);
fSuccess = GetCommState(hCom, &dcb);
FillMemory(&dcb, sizeof(dcb),0);
dcb.DCBlength = sizeof(dcb);
dcb.BaudRate = CBR_115200; // set the baud rate
dcb.ByteSize = 8; // data size, xmit, and rcv
dcb.Parity = NOPARITY; // no parity bit
dcb.StopBits = ONESTOPBIT; // one stop bit
dcb.fOutxCtsFlow = false;
fSuccess = SetCommState(hCom, &dcb);
buff_success = SetupComm(hCom, 1024, 1024);
COMMTIMEOUTS cmt;
// ReadIntervalTimeout in ms
cmt.ReadIntervalTimeout = 1000;
cmt.ReadTotalTimeoutMultiplier = 1000;
cmt.ReadTotalTimeoutConstant=1000;
timeout_flag = SetCommTimeouts(hCom, &cmt);
windows写串口-
WriteFile(hCom, buffer, len, &write, NULL);
Linux串行初始化-
_fd_port_no = open("//dev//ttyS0", O_RDWR | O_NOCTTY | O_NDELAY);
tcgetattr(_fd_port_no, &options);
cfsetispeed(&options, B115200);
cfsetospeed(&options, B115200);
options.c_cflag |= (CS8);
options.c_cflag|=(CLOCAL|CREAD);
options.c_cflag &=~PARENB;
options.c_cflag &= ~CSTOPB;
options.c_lflag &= ~(ICANON | ECHO | ECHOE | ISIG);
options.c_iflag |= (IXON | IXOFF | IXANY);
options.c_cflag &= ~ CRTSCTS;
tcsetattr(_fd_port_no, TCSANOW, &options);
读取串行linux-
while(read(_fd_port_no,buffer+_buffer_len,sizeof(buffer))>0)
{
_buffer_len = _buffer_len+sizeof(buffer);
}
是的,正如我从 Linux 告诉 Windows 仅检测到 NL/CR 问题,但我通过字节替换解决了它,但是您对从 Windows 发送到 Linux 的 serila 数据有任何想法(字节替换策略)。实际上我必须通过串行发送 200 字节块中的 200 KB 文件,以便如果从 Windows 发送到 Linux 可以替换哪个字节