hidapi icon indicating copy to clipboard operation
hidapi copied to clipboard

A Simple cross-platform library for communicating with HID devices

Results 109 hidapi issues
Sort by recently updated
recently updated
newest added

in android ,there is no libudev.h or libudev.so

enhancement
hidraw
Android
Contributions Welcome

Currently hidapi seems to detect my MSYS2 mingw64 CMake version wrongly. ``` MINGW64 /c/work/hid/hidapi $ cmake --version cmake version 3.27.7 CMake suite maintained and supported by Kitware (kitware.com/cmake). $ cmake...

build system/CI
CMake

Apparently CMake build scripts generate `hidapi-libusb` package (same way as on Linux), but not `hidapi` as autotools used to do it. Probably best to provide `hidapi` package always, even when...

bug
bsd
CMake

Win32 HID API doc says: For USB devices, the maximum string length is 126 wide characters (not including the terminating NULL character). For certain USB devices, using a buffer larger...

Windows

I have been using hid.c in a version from before September 2019 for 32- and 64-bit Windows programs. Compiler is CLANG in C++ Builder 11.3 (and earlier) IDE. hid.c was...

build system/CI
Windows

When building hidapi 0.14.0 on macOS, the dynamic library's minor version information is different depending on whether cmake or autotools was used for the build. With autotools: ``` % otool...

build system/CI
macOS

This is unsafe because the event is auto-reset, therefore the call to WaitForSingleObject() resets the event which GetOverlappedResult() will try to wait on. Even though the overlapped operation is guaranteed...

Windows

This might be user error by me, or maybe it is already solved, but i couldn't find a similar issue. My code is ``` c++ #include #include "hidapi.h" int main()...

Windows