Browse Source

tools: improve reliability of ttyopen()

Previously, communications with my RC2014 would always be rocky and
fail most of the time. By sending an CR at init, things go much
smoother.
master
Virgil Dupras 3 years ago
parent
commit
a19c814b0d
1 changed files with 5 additions and 0 deletions
  1. +5
    -0
      tools/common.c

+ 5
- 0
tools/common.c View File

@@ -149,6 +149,11 @@ int ttyopen(char *devname)
set_interface_attribs(fd, 0, 0);
set_blocking(fd, 0);
mempty(fd);
// Communication with device is much more reliable if we
// begin by sending, asynchronously, a CR to make sure we
// empty any pending stuff on all sides.
write(fd, "\r", 1);
mempty(fd);
set_blocking(fd, 1);
return fd;
}

Loading…
Cancel
Save