[answerback] decrease wait time

This commit is contained in:
David Alexander Majnemer 2010-10-27 15:48:50 -05:00
parent 809ce12216
commit 16e96b6e19

View file

@ -64,7 +64,7 @@ int main()
struct termios new_term = old_term;
new_term.c_lflag &= ~(ECHO | ECHOE | ECHOK | ECHONL | ICANON);
new_term.c_cc[VMIN] = 0;
new_term.c_cc[VTIME] = 10;
new_term.c_cc[VTIME] = 1;
if (tcsetattr(fd, TCSAFLUSH, &new_term) == -1)
{