Skip to content

Commit 7e44139

Browse files
committed
Better error checking and helpful message.
1 parent 4e816f8 commit 7e44139

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

src/config.c

+7
Original file line numberDiff line numberDiff line change
@@ -1761,6 +1761,13 @@ void config_init (char *fname, struct audio_s *p_audio_config,
17611761
p_audio_config->achan[channel].octrl[ot].ptt_model = -1;
17621762
}
17631763
else {
1764+
if ( ! alldigits(t)) {
1765+
text_color_set(DW_COLOR_ERROR);
1766+
dw_printf ("Config file line %d: A rig number, not a name, is required here.\n", line);
1767+
dw_printf ("For example, if you have a Yaesu FT-847, specify 101.\n");
1768+
dw_printf ("See https://github.com/Hamlib/Hamlib/wiki/Supported-Radios for more details.\n");
1769+
continue;
1770+
}
17641771
int n = atoi(t);
17651772
if (n < 1 || n > 9999) {
17661773
text_color_set(DW_COLOR_ERROR);

0 commit comments

Comments
 (0)