mirror of
https://github.com/MatMoul/g810-led.git
synced 2024-12-22 17:06:10 +00:00
Merge pull request #192 from DanEble/develop
Stop prepending a zero byte to the input of hid_write()
This commit is contained in:
commit
394f7fbbb0
@ -871,7 +871,6 @@ bool LedKeyboard::sendDataInternal(byte_buffer_t &data) {
|
||||
if (data.size() > 0) {
|
||||
#if defined(hidapi)
|
||||
if (! open(currentDevice.vendorID, currentDevice.productID, currentDevice.serialNumber)) return false;
|
||||
data.insert(data.begin(), 0x00);
|
||||
if (hid_write(m_hidHandle, const_cast<unsigned char*>(data.data()), data.size()) < 0) {
|
||||
std::cout<<"Error: Can not write to hidraw, try with the libusb version"<<std::endl;
|
||||
return false;
|
||||
|
Loading…
Reference in New Issue
Block a user