Linux下如何设置串口的DTR/DSR硬件流控
2016-11-25
展开全部
microyzy(毛毛叉) 说得对,用 ioctl
我做过,可以的
Listing 6 - Dropping DTR with the TIOCMSET ioctl.
#include <unistd.h>
#include <termios.h>
int fd;
int status;
ioctl(fd, TIOCMGET, &status);
status &= ~TIOCM_DTR;
ioctl(fd, TIOCMSET, &status);
我做过,可以的
Listing 6 - Dropping DTR with the TIOCMSET ioctl.
#include <unistd.h>
#include <termios.h>
int fd;
int status;
ioctl(fd, TIOCMGET, &status);
status &= ~TIOCM_DTR;
ioctl(fd, TIOCMSET, &status);
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |