Lukas Senionis

Results 124 comments of Lukas Senionis

I'll try to add this feature once all other enchantment issues closed and some other features are added.

I'm slowly rewriting my "VDF manger". In the end, one function will handle generated list with various options for saving entries. I'll make sure to throw this in too.

I'll include this in 1.3 release. Currently doing some restructurization to `Basic` and `Advanced` modes which will include some new features. I'm also kinda busy right now so can't really...

@PirhanaPlant The best I can do is to place that `vdf` file in controller template directory or personal (local) configuration directory. However I can't seem to find a way to...

@todbot It should work. I'll try to work on a solution myself. Already got separate threads working on my fork, just need to finish properly implement pooling and closing. Basically,...

@todbot The problem is that on windows this piece or code is being used: ``` void HID_API_EXPORT HID_API_CALL hid_close(hid_device *dev) { if (!dev) return; CancelIo(dev->device_handle); free_hid_device(dev); } ``` and CancelIo...

I forgot I had this issue open until today :smile: . Anyway, a quick summary - a PR in hidapi was refused, because it would bring min. Windows requirements up...

I kinda mixed up an issue and a PR. Anyway, the "refusing" (but not really) part is https://github.com/signal11/hidapi/issues/48 and the never merged PR is https://github.com/signal11/hidapi/pull/208.

@todbot done https://github.com/libusb/hidapi/issues/133

Let's say you have 2 threads (both are using some kind of wrapper to make sure that access to hidapi is synchronized via mutex or something else). First one is...