我在Linux中有以下功能,
#include <termios.h>
struct termios s;
int fd=open("/dev/ttyO0",O_RDWR);
tcgetattr( fd,&s);
中的内容是什么s
,或者换句话说,我的ttyO0
终端(串行终端)的状态是什么fd
。新打开的终端是否有默认状态,因为 fd 现在是全新的。也请让我知道在哪里可以找到相关文件。
我在Linux中有以下功能,
#include <termios.h>
struct termios s;
int fd=open("/dev/ttyO0",O_RDWR);
tcgetattr( fd,&s);
中的内容是什么s
,或者换句话说,我的ttyO0
终端(串行终端)的状态是什么fd
。新打开的终端是否有默认状态,因为 fd 现在是全新的。也请让我知道在哪里可以找到相关文件。