[Hamlib-commits] Hamlib -- Ham radio control libraries branch master updated. 92d01adaa164a3487e2f7
Library to control radio transceivers and receivers
Brought to you by:
n0nb
From: Michael B. <mdb...@us...> - 2021-05-01 18:19:37
|
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 92d01adaa164a3487e2f7e29ef9f1918a9ce8274 (commit) via 2dd87806cffae4164962204b05ad4b6890ead027 (commit) from a27595d71eb9b0715015625cf93cbcfd19378dfa (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 92d01adaa164a3487e2f7e29ef9f1918a9ce8274 Author: Mike Black W9MDB <mdb...@ya...> Date: Sat May 1 13:06:32 2021 -0500 Fix MinGW compile warning in dumpcaps.c diff --git a/tests/dumpcaps.c b/tests/dumpcaps.c index e138c53a..afc74e48 100644 --- a/tests/dumpcaps.c +++ b/tests/dumpcaps.c @@ -361,7 +361,8 @@ int dumpcaps(RIG *rig, FILE *fout) if (caps->has_set_level & RIG_LEVEL_READONLY_LIST) { - fprintf(fout, "Warning--backend can set readonly levels=0x%0llx\n", caps->has_set_level & RIG_LEVEL_READONLY_LIST); + //fprintf(fout, "Warning--backend can set readonly levels=0x%0llx\n", caps->has_set_level & RIG_LEVEL_READONLY_LIST); + fprintf(fout, "Warning--backend can set readonly levels\n"); backend_warnings++; } commit 2dd87806cffae4164962204b05ad4b6890ead027 Author: Mike Black W9MDB <mdb...@ya...> Date: Fri Apr 30 15:59:43 2021 -0500 Remove 3 second sleep from icom.c powerup diff --git a/rigs/icom/icom.c b/rigs/icom/icom.c index 94356c98..a6f7bd2e 100644 --- a/rigs/icom/icom.c +++ b/rigs/icom/icom.c @@ -6618,7 +6618,8 @@ int icom_set_powerstat(RIG *rig, powerstat_t status) retval = icom_transaction(rig, C_SET_PWR, pwr_sc, NULL, 0, ackbuf, &ack_len); rs->rigport.retry = retry; - hl_usleep(3000 * 1000); // give it 3 seconds to wake up + // why was this sleep here? We'll try without it + //hl_usleep(3000 * 1000); // give it 3 seconds to wake up break; diff --git a/rigs/icom/icom.h b/rigs/icom/icom.h index 564b519e..505dc454 100644 --- a/rigs/icom/icom.h +++ b/rigs/icom/icom.h @@ -30,7 +30,7 @@ #include <sys/time.h> #endif -#define BACKEND_VER "20210427" +#define BACKEND_VER "20210430" /* * defines used by comp_cal_str in rig.c ----------------------------------------------------------------------- Summary of changes: rigs/icom/icom.c | 3 ++- rigs/icom/icom.h | 2 +- tests/dumpcaps.c | 3 ++- 3 files changed, 5 insertions(+), 3 deletions(-) hooks/post-receive -- Hamlib -- Ham radio control libraries |