From 7283b49e13cb2bb383764dcf54e5d7d17b9c94ce Mon Sep 17 00:00:00 2001 From: Jacob Sorber Date: Fri, 11 Feb 2022 08:21:27 -0500 Subject: [PATCH] fixed hidapi compile bug, missing vid/pid arguments --- transport/rf2500hidapi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/transport/rf2500hidapi.c b/transport/rf2500hidapi.c index 0902ea7..e3c1dae 100644 --- a/transport/rf2500hidapi.c +++ b/transport/rf2500hidapi.c @@ -200,7 +200,7 @@ transport_t rf2500hidapi_open(const char *devpath, const char *requested_serial, free(tr); hid_exit(); 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;