Skip to content

Commit 37cb544

Browse files
committed
Better error messages.
1 parent c72d06c commit 37cb544

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

ptt.c

+4-4
Original file line numberDiff line numberDiff line change
@@ -984,7 +984,7 @@ void ptt_init (struct audio_s *audio_config_p)
984984

985985
if (audio_config_p->achan[ch].octrl[ot].ptt_model == RIG_MODEL_NONE) {
986986
text_color_set(DW_COLOR_ERROR);
987-
dw_printf ("Couldn't guess rig model number for AUTO option. Run \"rigctl --list\" for a list of model numbers.\n");
987+
dw_printf ("Hamlib Error: Couldn't guess rig model number for AUTO option. Run \"rigctl --list\" for a list of model numbers.\n");
988988
continue;
989989
}
990990

@@ -996,7 +996,7 @@ void ptt_init (struct audio_s *audio_config_p)
996996
rig[ch][ot] = rig_init(audio_config_p->achan[ch].octrl[ot].ptt_model);
997997
if (rig[ch][ot] == NULL) {
998998
text_color_set(DW_COLOR_ERROR);
999-
dw_printf ("Unknown rig model %d for hamlib. Run \"rigctl --list\" for a list of model numbers.\n",
999+
dw_printf ("Hamlib error: Unknown rig model %d. Run \"rigctl --list\" for a list of model numbers.\n",
10001000
audio_config_p->achan[ch].octrl[ot].ptt_model);
10011001
continue;
10021002
}
@@ -1270,13 +1270,13 @@ void ptt_set (int ot, int chan, int ptt_signal)
12701270

12711271
if (retcode != RIG_OK) {
12721272
text_color_set(DW_COLOR_ERROR);
1273-
dw_printf ("Error sending rig_set_ptt command for channel %d %s\n", chan, otnames[ot]);
1273+
dw_printf ("Hamlib Error: rig_set_ptt command for channel %d %s\n", chan, otnames[ot]);
12741274
dw_printf ("%s\n", rigerror(retcode));
12751275
}
12761276
}
12771277
else {
12781278
text_color_set(DW_COLOR_ERROR);
1279-
dw_printf ("Can't use rig_set_ptt for channel %d %s because rig_open failed.\n", chan, otnames[ot]);
1279+
dw_printf ("Hamlib: Can't use rig_set_ptt for channel %d %s because rig_open failed.\n", chan, otnames[ot]);
12801280
}
12811281
}
12821282
#endif

0 commit comments

Comments
 (0)