Skip to content

Commit 73d5d13

Browse files
committed
Recognize Windows form of device path.
1 parent 12de518 commit 73d5d13

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

src/config.c

+11
Original file line numberDiff line numberDiff line change
@@ -1893,6 +1893,16 @@ void config_init (char *fname, struct audio_s *p_audio_config,
18931893
p_audio_config->achan[channel].octrl[ot].out_gpio_num = atoi(t);
18941894
p_audio_config->achan[channel].octrl[ot].ptt_invert = 0;
18951895
}
1896+
#if __WIN32__
1897+
else if (*t == '\\') {
1898+
strlcpy (p_audio_config->achan[channel].octrl[ot].ptt_device, t, sizeof(p_audio_config->achan[channel].octrl[ot].ptt_device));
1899+
}
1900+
else {
1901+
text_color_set(DW_COLOR_ERROR);
1902+
dw_printf ("Config file line %d: Found \"%s\" when expecting GPIO number or device name like \\\\?\\hid#vid_0d8c&... .\n", line, t);
1903+
continue;
1904+
}
1905+
#else
18961906
else if (*t == '/') {
18971907
strlcpy (p_audio_config->achan[channel].octrl[ot].ptt_device, t, sizeof(p_audio_config->achan[channel].octrl[ot].ptt_device));
18981908
}
@@ -1901,6 +1911,7 @@ void config_init (char *fname, struct audio_s *p_audio_config,
19011911
dw_printf ("Config file line %d: Found \"%s\" when expecting GPIO number or device name like /dev/hidraw1.\n", line, t);
19021912
continue;
19031913
}
1914+
#endif
19041915
}
19051916
if (p_audio_config->achan[channel].octrl[ot].out_gpio_num < 1 || p_audio_config->achan[channel].octrl[ot].out_gpio_num > 8) {
19061917
text_color_set(DW_COLOR_ERROR);

0 commit comments

Comments
 (0)