我在这里得到了一些从串行设备读取输出的 C 代码。我目前正在使用 perl 从设备读取数据并且工作正常,但我更愿意用 C 编写一些东西来完成同样的工作。
这是我到目前为止得到的代码;
#include<stdio.h> /* Standard input/output definitions */
#include<stdlib.h>
#include<string.h> /* String function definitions */
#include<unistd.h> /* UNIX standard function definitions */
#include<fcntl.h> /* File control definitions */
#include<errno.h> /* Error number definitions */
#include<termios.h> /* POSIX terminal control definitions */
#include<string.h>
#include<unistd.h>
char *buf;
int fd; /* File descriptor for the port */
int i,n;
int open_port(void)
{
fd = open("/dev/ttyUSB1", O_RDWR | O_NOCTTY | O_NDELAY);
if (fd == -1) {
perror("cannot open");
}
else
fcntl(fd, F_SETFL, 0);
struct termios options;
tcgetattr(fd, &options);
cfsetispeed(&options, B38400);
cfsetospeed(&options, B38400);
options.c_cflag |= (CLOCAL | CREAD);
tcsetattr(fd, TCSANOW, &options);
options.c_cflag &= ~CSIZE;
options.c_cflag &= ~PARENB;
options.c_cflag &= ~CSTOPB;
options.c_cflag &= ~CSIZE;
options.c_cflag |= CS8;
// options.c_cflag |= (IXON | IXOFF | IXANY); // xon & xoff on
return (fd);
}
int main(int argc) {
buf=malloc(4095);
open_port();
free(buf);
while(1){
read(fd,buf,128);
printf("%s\n",buf);
}
close(fd);
}
当我编译并运行它时输出数据,但我看到的数据是垃圾格式......我想看到的是可读的十六进制数据,如 0AEA4E2A ......任何人都知道如何轻松地将数据转换为可读的十六进制代码?我已经在谷歌上搜索了一段时间,但似乎没有什么能真正完成这项工作。
这就是我在 perl 中所做的;
while ($timeout>0) {
my ($count,$saw)=$PortObj->read(1); # will read _up to_ 255 chars
if ($count > 0) {
$chars+=$count;
$buffer.=$saw; my $hex = unpack 'H*', $saw; printf ($hex);