Merge pull request #114 from sorber/fix-hidapi-bug
fixed hidapi compile bug, missing vid/pid arguments
This commit is contained in:
commit
4858be123c
|
@ -200,7 +200,7 @@ transport_t rf2500hidapi_open(const char *devpath, const char *requested_serial,
|
||||||
free(tr);
|
free(tr);
|
||||||
hid_exit();
|
hid_exit();
|
||||||
printc_err("rf2500: fallback to libusb backend\n");
|
printc_err("rf2500: fallback to libusb backend\n");
|
||||||
return rf2500_open(devpath, requested_serial);
|
return rf2500_open(devpath, requested_serial, has_vid_pid, vid, pid);
|
||||||
}
|
}
|
||||||
|
|
||||||
tr->handle = handle;
|
tr->handle = handle;
|
||||||
|
|
Loading…
Reference in New Issue