Skip to content

Commit f8b9cae

Browse files
committed
Improved error messages.
1 parent 92a2097 commit f8b9cae

File tree

2 files changed

+20
-9
lines changed

2 files changed

+20
-9
lines changed

src/config.c

+13-3
Original file line numberDiff line numberDiff line change
@@ -709,6 +709,14 @@ static char *split (char *string, int rest_of_line)
709709
*
710710
*--------------------------------------------------------------------*/
711711

712+
static void rtfm()
713+
{
714+
text_color_set(DW_COLOR_ERROR);
715+
dw_printf ("See online documentation:\n");
716+
dw_printf (" stable release: https://github.com/wb2osz/direwolf/tree/master/doc\n");
717+
dw_printf (" development version: https://github.com/wb2osz/direwolf/tree/dev/doc\n");
718+
dw_printf (" additional topics: https://github.com/wb2osz/direwolf-doc\n");
719+
}
712720

713721
void config_init (char *fname, struct audio_s *p_audio_config,
714722
struct digi_config_s *p_digi_config,
@@ -970,7 +978,8 @@ void config_init (char *fname, struct audio_s *p_audio_config,
970978
text_color_set(DW_COLOR_ERROR);
971979
dw_printf ("ERROR - Could not open config file %s\n", filepath);
972980
dw_printf ("Try using -c command line option for alternate location.\n");
973-
return;
981+
rtfm();
982+
exit(EXIT_FAILURE);
974983
}
975984

976985
dw_printf ("\nReading config file %s\n", filepath);
@@ -1027,7 +1036,8 @@ void config_init (char *fname, struct audio_s *p_audio_config,
10271036
if (t == NULL) {
10281037
text_color_set(DW_COLOR_ERROR);
10291038
dw_printf ("Config file: Missing name of audio device for ADEVICE command on line %d.\n", line);
1030-
continue;
1039+
rtfm();
1040+
exit(EXIT_FAILURE);
10311041
}
10321042

10331043
p_audio_config->adev[adevice].defined = 1;
@@ -1986,7 +1996,7 @@ void config_init (char *fname, struct audio_s *p_audio_config,
19861996
dw_printf ("Config file line %d: %s with CM108 is only available when USB Audio GPIO support is enabled.\n", line, otname);
19871997
dw_printf ("You must rebuild direwolf with CM108 Audio Adapter GPIO PTT support.\n");
19881998
dw_printf ("See Interface Guide for details.\n");
1989-
1999+
rtfm();
19902000
exit (EXIT_FAILURE);
19912001
#endif
19922002
}

src/direwolf.c

+7-6
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ static BOOL cleanup_win (int);
138138
static void cleanup_linux (int);
139139
#endif
140140

141-
static void usage (char **argv);
141+
static void usage ();
142142

143143
#if defined(__SSE__) && !defined(__APPLE__)
144144

@@ -598,7 +598,7 @@ int main (int argc, char *argv[])
598598
case '?':
599599

600600
/* For '?' unknown option message was already printed. */
601-
usage (argv);
601+
usage ();
602602
break;
603603

604604
case 'd': /* Set debug option. */
@@ -742,7 +742,7 @@ int main (int argc, char *argv[])
742742
/* Should not be here. */
743743
text_color_set(DW_COLOR_DEBUG);
744744
dw_printf("?? getopt returned character code 0%o ??\n", c);
745-
usage (argv);
745+
usage ();
746746
}
747747
} /* end while(1) for options */
748748

@@ -987,6 +987,7 @@ int main (int argc, char *argv[])
987987
text_color_set(DW_COLOR_ERROR);
988988
dw_printf ("Pointless to continue without audio device.\n");
989989
SLEEP_SEC(5);
990+
usage ();
990991
exit (1);
991992
}
992993

@@ -1722,16 +1723,16 @@ static void usage (char **argv)
17221723
dw_printf ("\n");
17231724

17241725
#if __WIN32__
1725-
dw_printf ("Complete documentation can be found in the 'doc' folder\n");
1726+
dw_printf ("Documentation can be found in the 'doc' folder\n");
17261727
#else
17271728
// TODO: Could vary by platform and build options.
1728-
dw_printf ("Complete documentation can be found in /usr/local/share/doc/direwolf\n");
1729+
dw_printf ("Documentation can be found in /usr/local/share/doc/direwolf\n");
17291730
#endif
17301731
dw_printf ("or online at https://github.com/wb2osz/direwolf/tree/master/doc\n");
1732+
dw_printf ("additional topics: https://github.com/wb2osz/direwolf-doc\n");
17311733
text_color_set(DW_COLOR_INFO);
17321734
exit (EXIT_FAILURE);
17331735
}
17341736

17351737

1736-
17371738
/* end direwolf.c */

0 commit comments

Comments
 (0)