Skip to content

Commit a87b72e

Browse files
authored
Handle slow Hamlib init. This change adds a retry loop to the (#484)
rig_open call. If the rig_open continues to fail after 5 tries, exit.
1 parent 2434e5f commit a87b72e

File tree

1 file changed

+15
-2
lines changed

1 file changed

+15
-2
lines changed

src/ptt.c

+15-2
Original file line numberDiff line numberDiff line change
@@ -991,6 +991,8 @@ void ptt_init (struct audio_s *audio_config_p)
991991
for (ot = 0; ot < NUM_OCTYPES; ot++) {
992992
if (audio_config_p->achan[ch].octrl[ot].ptt_method == PTT_METHOD_HAMLIB) {
993993
if (ot == OCTYPE_PTT) {
994+
int err = -1;
995+
int tries = 0;
994996

995997
/* For "AUTO" model, try to guess what is out there. */
996998

@@ -1055,13 +1057,24 @@ void ptt_init (struct audio_s *audio_config_p)
10551057
rig[ch][ot]->state.rigport.parm.serial.parity = RIG_PARITY_NONE;
10561058
rig[ch][ot]->state.rigport.parm.serial.handshake = RIG_HANDSHAKE_NONE;
10571059
}
1058-
int err = rig_open(rig[ch][ot]);
1060+
tries = 0;
1061+
do {
1062+
// Try up to 5 times, Hamlib can take a moment to finish init
1063+
err = rig_open(rig[ch][ot]);
1064+
if (++tries > 5) {
1065+
break;
1066+
} else if (err != RIG_OK) {
1067+
text_color_set(DW_COLOR_INFO);
1068+
dw_printf ("Retrying Hamlib Rig open...\n");
1069+
sleep (5);
1070+
}
1071+
} while (err != RIG_OK);
10591072
if (err != RIG_OK) {
10601073
text_color_set(DW_COLOR_ERROR);
10611074
dw_printf ("Hamlib Rig open error %d: %s\n", err, rigerror(err));
10621075
rig_cleanup (rig[ch][ot]);
10631076
rig[ch][ot] = NULL;
1064-
continue;
1077+
exit (1);
10651078
}
10661079

10671080
/* Successful. Later code should check for rig[ch][ot] not NULL. */

0 commit comments

Comments
 (0)