From: Keith Packard Date: Fri, 23 Oct 2020 03:48:26 +0000 (-0700) Subject: libaltos: Add windows override for EasyTimer USB ID X-Git-Tag: 1.9.7~1^2~45 X-Git-Url: https://git.gag.com/?p=fw%2Faltos;a=commitdiff_plain;h=ecf782359d3038399049ec5cc0a2b3071e14c78f libaltos: Add windows override for EasyTimer USB ID Windows doesn't use the product name from the device, instead it uses whatever was in the .ini file, which was "TeleTerra" for the EasyTimer ID. Signed-off-by: Keith Packard --- diff --git a/libaltos/altos.dll b/libaltos/altos.dll index ed0e4772..3a3aca0e 100755 Binary files a/libaltos/altos.dll and b/libaltos/altos.dll differ diff --git a/libaltos/altos64.dll b/libaltos/altos64.dll index e0edc1df..c83c59e9 100755 Binary files a/libaltos/altos64.dll and b/libaltos/altos64.dll differ diff --git a/libaltos/libaltos_windows.c b/libaltos/libaltos_windows.c index b92df708..43e347c4 100644 --- a/libaltos/libaltos_windows.c +++ b/libaltos/libaltos_windows.c @@ -135,6 +135,7 @@ static struct { unsigned int vid, pid; char *name; } name_map[] = { + { .vid = 0xfffe, .pid = 0x000d, .name = "EasyTimer" }, { .vid = 0xfffe, .pid = 0x0028, .name = "EasyMega" }, { .vid = 0xfffe, .pid = 0x002c, .name = "EasyMotor" }, { .name = NULL },