X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=libaltos%2Flibaltos_windows.c;h=162c85bab8fa6aa658479017bb920395fb678e8a;hb=67e8e9b5b51e259eda4a669de527111851bab78f;hp=03c2958f52bc1a63b1a0dc71c01eb43a82472e8a;hpb=91ab3acc113dc24e1ebce89875def646e590fb12;p=fw%2Faltos diff --git a/libaltos/libaltos_windows.c b/libaltos/libaltos_windows.c index 03c2958f..162c85ba 100644 --- a/libaltos/libaltos_windows.c +++ b/libaltos/libaltos_windows.c @@ -131,6 +131,15 @@ altos_ftdi_list_start(void) return list; } +static struct { + char *windows; + char *real; +} name_map[] = { + { .windows = "AltusMetrum28", .real = "EasyMega" }, + { .windows = "AltusMetrum2c", .real = "EasyMotor" }, + { 0, 0 }, +}; + PUBLIC int altos_list_next(struct altos_list *list, struct altos_device *device) { @@ -148,6 +157,7 @@ altos_list_next(struct altos_list *list, struct altos_device *device) DWORD friendlyname_len; char instanceid[1024]; DWORD instanceid_len; + int i; dev_info_data.cbSize = sizeof (SP_DEVINFO_DATA); while(SetupDiEnumDeviceInfo(list->dev_info, list->index, @@ -230,6 +240,16 @@ altos_list_next(struct altos_list *list, struct altos_device *device) altos_set_last_windows_error(); continue; } + for (i = 0; name_map[i].windows; i++) + if (!strcmp(name_map[i].windows, friendlyname)) { + strcpy(friendlyname, name_map[i].real); + break; + } + + char *space = strchr(friendlyname, ' '); + if (space) + *space = '\0'; + device->vendor = vid; device->product = pid; device->serial = serial;