Add support to G700 Gaming Mouse receiver
This commit is contained in:
parent
aa03cef61f
commit
9a9a82016f
|
@ -11,3 +11,4 @@ Nano receiver:
|
||||||
046d:c51a interface: 1 driver: hid-generic
|
046d:c51a interface: 1 driver: hid-generic
|
||||||
046d:c526 interface: 1 driver: hid-generic
|
046d:c526 interface: 1 driver: hid-generic
|
||||||
046d:c52e interface: 1 driver: hid-generic
|
046d:c52e interface: 1 driver: hid-generic
|
||||||
|
046d:c531 interface: 1 driver: hid-generic
|
||||||
|
|
|
@ -48,6 +48,7 @@ NANO_RECEIVER_C521 = _nano_receiver(0xc521)
|
||||||
NANO_RECEIVER_C525 = _nano_receiver(0xc525)
|
NANO_RECEIVER_C525 = _nano_receiver(0xc525)
|
||||||
NANO_RECEIVER_C526 = _nano_receiver(0xc526)
|
NANO_RECEIVER_C526 = _nano_receiver(0xc526)
|
||||||
NANO_RECEIVER_C52e = _nano_receiver(0xc52e)
|
NANO_RECEIVER_C52e = _nano_receiver(0xc52e)
|
||||||
|
NANO_RECEIVER_C531 = _nano_receiver(0xc531)
|
||||||
|
|
||||||
|
|
||||||
del _unifying_receiver, _nano_receiver
|
del _unifying_receiver, _nano_receiver
|
||||||
|
@ -65,4 +66,5 @@ ALL = (
|
||||||
NANO_RECEIVER_C525,
|
NANO_RECEIVER_C525,
|
||||||
NANO_RECEIVER_C526,
|
NANO_RECEIVER_C526,
|
||||||
NANO_RECEIVER_C52e,
|
NANO_RECEIVER_C52e,
|
||||||
|
NANO_RECEIVER_C531,
|
||||||
)
|
)
|
||||||
|
|
|
@ -9,6 +9,7 @@ SUBSYSTEM != "hidraw", GOTO="solaar_end"
|
||||||
|
|
||||||
# official Unifying receivers
|
# official Unifying receivers
|
||||||
ATTRS{idVendor}=="046d", ATTRS{idProduct}=="c52b", GOTO="solaar_apply"
|
ATTRS{idVendor}=="046d", ATTRS{idProduct}=="c52b", GOTO="solaar_apply"
|
||||||
|
ATTRS{idVendor}=="046d", ATTRS{idProduct}=="c531", GOTO="solaar_apply"
|
||||||
ATTRS{idVendor}=="046d", ATTRS{idProduct}=="c532", GOTO="solaar_apply"
|
ATTRS{idVendor}=="046d", ATTRS{idProduct}=="c532", GOTO="solaar_apply"
|
||||||
|
|
||||||
# Nano receiver, "Unifying Ready"
|
# Nano receiver, "Unifying Ready"
|
||||||
|
|
Loading…
Reference in New Issue