我做过,可以的
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)
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)