@@ -984,7 +984,7 @@ void ptt_init (struct audio_s *audio_config_p)
984
984
985
985
if (audio_config_p -> achan [ch ].octrl [ot ].ptt_model == RIG_MODEL_NONE ) {
986
986
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" );
988
988
continue ;
989
989
}
990
990
@@ -996,7 +996,7 @@ void ptt_init (struct audio_s *audio_config_p)
996
996
rig [ch ][ot ] = rig_init (audio_config_p -> achan [ch ].octrl [ot ].ptt_model );
997
997
if (rig [ch ][ot ] == NULL ) {
998
998
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" ,
1000
1000
audio_config_p -> achan [ch ].octrl [ot ].ptt_model );
1001
1001
continue ;
1002
1002
}
@@ -1270,13 +1270,13 @@ void ptt_set (int ot, int chan, int ptt_signal)
1270
1270
1271
1271
if (retcode != RIG_OK ) {
1272
1272
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 ]);
1274
1274
dw_printf ("%s\n" , rigerror (retcode ));
1275
1275
}
1276
1276
}
1277
1277
else {
1278
1278
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 ]);
1280
1280
}
1281
1281
}
1282
1282
#endif
0 commit comments