mirror of https://github.com/wb2osz/direwolf.git
Better error message.
This commit is contained in:
parent
07f2174be4
commit
1a2de05e71
9
beacon.c
9
beacon.c
|
@ -221,6 +221,15 @@ void beacon_init (struct audio_s *pmodem, struct misc_config_s *pconfig, struct
|
||||||
text_color_set(DW_COLOR_ERROR);
|
text_color_set(DW_COLOR_ERROR);
|
||||||
dw_printf ("Config file, line %d: GPS must be configured to use TBEACON.\n", g_misc_config_p->beacon[j].lineno);
|
dw_printf ("Config file, line %d: GPS must be configured to use TBEACON.\n", g_misc_config_p->beacon[j].lineno);
|
||||||
g_misc_config_p->beacon[j].btype = BEACON_IGNORE;
|
g_misc_config_p->beacon[j].btype = BEACON_IGNORE;
|
||||||
|
#if __WIN32__
|
||||||
|
dw_printf ("You must specify the GPSNMEA command in your configuration file.\n");
|
||||||
|
dw_printf ("This contains the name of the serial port where the receiver is connected.\n");
|
||||||
|
#else
|
||||||
|
dw_printf ("You must specify the source of the GPS data in your configuration file.\n");
|
||||||
|
dw_printf ("It can be either GPSD, meaning the gpsd daemon, or GPSNMEA for\n");
|
||||||
|
dw_printf ("for a serial port connection with exclusive use.\n");
|
||||||
|
#endif
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in New Issue