Parcourir la 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 il y a 3 ans
Parent
révision
a19c814b0d
1 fichiers modifiés avec 5 ajouts et 0 suppressions
  1. +5
    -0
      tools/common.c

+ 5
- 0
tools/common.c Voir le fichier

@@ -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;
}

Chargement…
Annuler
Enregistrer