Fix for asus mice not sending response

This commit is contained in:
Mola19 2022-02-23 04:18:42 +00:00 committed by Adam Honse
parent 41ef951e8b
commit 8120fcdd5a

View file

@ -171,5 +171,5 @@ void AuraMouseController::SendUpdate
hid_write(dev, usb_buf, ASUS_AURA_MOUSE_PACKET_SIZE);
unsigned char usb_buf_out[ASUS_AURA_MOUSE_PACKET_SIZE];
hid_read(dev, usb_buf_out, ASUS_AURA_MOUSE_PACKET_SIZE);
hid_read_timeout(dev, usb_buf_out, ASUS_AURA_MOUSE_PACKET_SIZE, 10);
}