Move sleep for serial before the flush

pull/1289/head^2
Mike Black W9MDB 2023-05-13 10:48:39 -05:00
rodzic 43b24caa01
commit 99baa872bf
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -255,8 +255,8 @@ int HAMLIB_API serial_open(hamlib_port_t *rp)
return (err);
}
serial_flush(rp); // ensure nothing is there when we open
hl_usleep(50 * 1000); // give a little time for MicroKeyer to finish
serial_flush(rp); // ensure nothing is there when we open
return (RIG_OK);
}