mirror of
https://github.com/tio/tio.git
synced 2026-05-01 14:57:59 +02:00
Remove unnecessary sync in line input mode
This caused a problem for some highly timing sensitive modem read-eval-print loops because the input line and line termination characters (cr/nl) would be shifted out on the UART with too big delay inbetween because of two syncs.
This commit is contained in:
parent
2f6b3796f2
commit
ef12ed62df
1 changed files with 0 additions and 1 deletions
|
|
@ -2669,7 +2669,6 @@ int tty_connect(void)
|
||||||
// Write current line to tty device
|
// Write current line to tty device
|
||||||
char *rl_line = readline_get();
|
char *rl_line = readline_get();
|
||||||
tty_write(device_fd, rl_line, strlen(rl_line));
|
tty_write(device_fd, rl_line, strlen(rl_line));
|
||||||
tty_sync(device_fd);
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue