File tree 1 file changed +15
-2
lines changed
1 file changed +15
-2
lines changed Original file line number Diff line number Diff line change @@ -991,6 +991,8 @@ void ptt_init (struct audio_s *audio_config_p)
991
991
for (ot = 0 ; ot < NUM_OCTYPES ; ot ++ ) {
992
992
if (audio_config_p -> achan [ch ].octrl [ot ].ptt_method == PTT_METHOD_HAMLIB ) {
993
993
if (ot == OCTYPE_PTT ) {
994
+ int err = -1 ;
995
+ int tries = 0 ;
994
996
995
997
/* For "AUTO" model, try to guess what is out there. */
996
998
@@ -1055,13 +1057,24 @@ void ptt_init (struct audio_s *audio_config_p)
1055
1057
rig [ch ][ot ]-> state .rigport .parm .serial .parity = RIG_PARITY_NONE ;
1056
1058
rig [ch ][ot ]-> state .rigport .parm .serial .handshake = RIG_HANDSHAKE_NONE ;
1057
1059
}
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 );
1059
1072
if (err != RIG_OK ) {
1060
1073
text_color_set (DW_COLOR_ERROR );
1061
1074
dw_printf ("Hamlib Rig open error %d: %s\n" , err , rigerror (err ));
1062
1075
rig_cleanup (rig [ch ][ot ]);
1063
1076
rig [ch ][ot ] = NULL ;
1064
- continue ;
1077
+ exit ( 1 ) ;
1065
1078
}
1066
1079
1067
1080
/* Successful. Later code should check for rig[ch][ot] not NULL. */
You can’t perform that action at this time.
0 commit comments