[Hamlib-commits] Hamlib -- Ham radio control libraries branch master updated. v4.0rc1-74-gbc1e0cc6
Library to control radio transceivers and receivers
Brought to you by:
n0nb
From: Michael B. <mdb...@us...> - 2020-08-18 22:18:17
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "Hamlib -- Ham radio control libraries". The branch, master has been updated via bc1e0cc678b67a487dc1054e9720cf29e3ded43a (commit) from 59358564c77b6048ec435b7362a7326252661b79 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit bc1e0cc678b67a487dc1054e9720cf29e3ded43a Author: Michael Black W9MDB <mdb...@ya...> Date: Tue Aug 18 17:13:02 2020 -0500 https://github.com/Hamlib/Hamlib/issues/358 Added 50ms wait after serial port is opened. MicroKeyer was rejecting "ID" command as it was too fast. Values at 20ms or less weren't working so doing 2* safety factor This shouldn't harm any other things going on. diff --git a/src/serial.c b/src/serial.c index 526dc895..b3c9a3bb 100644 --- a/src/serial.c +++ b/src/serial.c @@ -227,6 +227,7 @@ int HAMLIB_API serial_open(hamlib_port_t *rp) } serial_flush(rp); // ensure nothing is there when we open + hl_usleep(50 * 1000); // give a little time for MicroKeyer to finish return RIG_OK; } @@ -335,6 +336,7 @@ int HAMLIB_API serial_setup(hamlib_port_t *rp) break; #ifdef B230400 + case 230400: speed = B230400; /* super awesome! */ break; ----------------------------------------------------------------------- Summary of changes: src/serial.c | 2 ++ 1 file changed, 2 insertions(+) hooks/post-receive -- Hamlib -- Ham radio control libraries |