Skip to content

Commit 5dbe2ce

Browse files
committed
Allow speed for GPSNMEA configuration.
1 parent 65869bc commit 5dbe2ce

File tree

3 files changed

+13
-7
lines changed

3 files changed

+13
-7
lines changed

src/config.c

+9-2
Original file line numberDiff line numberDiff line change
@@ -4774,7 +4774,7 @@ void config_init (char *fname, struct audio_s *p_audio_config,
47744774

47754775

47764776
/*
4777-
* GPSNMEA - Device name for reading from GPS receiver.
4777+
* GPSNMEA serial-device [ speed ] - Direct connection to GPS receiver.
47784778
*/
47794779
else if (strcasecmp(t, "gpsnmea") == 0) {
47804780
t = split(NULL,0);
@@ -4783,8 +4783,15 @@ void config_init (char *fname, struct audio_s *p_audio_config,
47834783
dw_printf ("Config file, line %d: Missing serial port name for GPS receiver.\n", line);
47844784
continue;
47854785
}
4786+
strlcpy (p_misc_config->gpsnmea_port, t, sizeof(p_misc_config->gpsnmea_port));
4787+
4788+
t = split(NULL,0);
4789+
if (t != NULL) {
4790+
int n = atoi(t);
4791+
p_misc_config->gpsnmea_speed = n;
4792+
}
47864793
else {
4787-
strlcpy (p_misc_config->gpsnmea_port, t, sizeof(p_misc_config->gpsnmea_port));
4794+
p_misc_config->gpsnmea_speed = 4800; // The standard at one time.
47884795
}
47894796
}
47904797

src/config.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,8 @@ struct misc_config_s {
7676

7777
char gpsnmea_port[20]; /* Serial port name for reading NMEA sentences from GPS. */
7878
/* e.g. COM22, /dev/ttyACM0 */
79-
/* Currently no option for setting non-standard speed. */
79+
80+
int gpsnmea_speed; /* Speed for above, baud, default 4800. */
8081

8182
char gpsd_host[20]; /* Host for gpsd server. */
8283
/* e.g. localhost, 192.168.1.2 */

src/dwgpsnmea.c

+2-4
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ int dwgpsnmea_init (struct misc_config_s *pconfig, int debug)
148148
* Should add an option to allow changing someday.
149149
*/
150150

151-
s_gpsnmea_port_fd = serial_port_open (pconfig->gpsnmea_port, 4800);
151+
s_gpsnmea_port_fd = serial_port_open (pconfig->gpsnmea_port, pconfig->gpsnmea_speed);
152152

153153
if (s_gpsnmea_port_fd != MYFDERROR) {
154154
#if __WIN32__
@@ -182,12 +182,10 @@ int dwgpsnmea_init (struct misc_config_s *pconfig, int debug)
182182

183183

184184
/* Return fd to share if waypoint wants same device. */
185-
/* Currently both are fixed speed at 4800. */
186-
/* If that ever becomes configurable, that needs to be compared too. */
187185

188186
MYFDTYPE dwgpsnmea_get_fd(char *wp_port_name, int speed)
189187
{
190-
if (strcmp(s_save_configp->gpsnmea_port, wp_port_name) == 0 && speed == 4800) {
188+
if (strcmp(s_save_configp->gpsnmea_port, wp_port_name) == 0 && speed == s_save_configp->gpsnmea_speed) {
191189
return (s_gpsnmea_port_fd);
192190
}
193191
return (MYFDERROR);

0 commit comments

Comments
 (0)