粗心樱桃

文章
5
资源
0
加入时间
3年0月9天

ROS 非阻塞读取键盘输入

int getch(){ static struct termios oldt, newt; tcgetattr( STDIN_FILENO, &oldt); // save old settings newt = oldt; newt.c_lflag &= ~(ICANON); // disable buffering newt.c_cc[VMIN] = 0; newt.c_cc[VT