@@ -709,6 +709,14 @@ static char *split (char *string, int rest_of_line)
709
709
*
710
710
*--------------------------------------------------------------------*/
711
711
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
+ }
712
720
713
721
void config_init (char * fname , struct audio_s * p_audio_config ,
714
722
struct digi_config_s * p_digi_config ,
@@ -970,7 +978,8 @@ void config_init (char *fname, struct audio_s *p_audio_config,
970
978
text_color_set (DW_COLOR_ERROR );
971
979
dw_printf ("ERROR - Could not open config file %s\n" , filepath );
972
980
dw_printf ("Try using -c command line option for alternate location.\n" );
973
- return ;
981
+ rtfm ();
982
+ exit (EXIT_FAILURE );
974
983
}
975
984
976
985
dw_printf ("\nReading config file %s\n" , filepath );
@@ -1027,7 +1036,8 @@ void config_init (char *fname, struct audio_s *p_audio_config,
1027
1036
if (t == NULL ) {
1028
1037
text_color_set (DW_COLOR_ERROR );
1029
1038
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 );
1031
1041
}
1032
1042
1033
1043
p_audio_config -> adev [adevice ].defined = 1 ;
@@ -1986,7 +1996,7 @@ void config_init (char *fname, struct audio_s *p_audio_config,
1986
1996
dw_printf ("Config file line %d: %s with CM108 is only available when USB Audio GPIO support is enabled.\n" , line , otname );
1987
1997
dw_printf ("You must rebuild direwolf with CM108 Audio Adapter GPIO PTT support.\n" );
1988
1998
dw_printf ("See Interface Guide for details.\n" );
1989
-
1999
+ rtfm ();
1990
2000
exit (EXIT_FAILURE );
1991
2001
#endif
1992
2002
}
0 commit comments