receiver: add lightspeed receiver c545
This commit is contained in:
parent
6918353a29
commit
15b1965582
|
@ -61,6 +61,7 @@ a tuple of known feature settings (from `lib/logitech/settings_templates.py`).
|
||||||
| 064d:c53a | Lightspeed | 1 |
|
| 064d:c53a | Lightspeed | 1 |
|
||||||
| 064d:c53d | Lightspeed | 1 |
|
| 064d:c53d | Lightspeed | 1 |
|
||||||
| 064d:c53f | Lightspeed | 1 |
|
| 064d:c53f | Lightspeed | 1 |
|
||||||
|
| 064d:c545 | Lightspeed | 1 |
|
||||||
| 17ef:6042 | Nano | 1 |
|
| 17ef:6042 | Nano | 1 |
|
||||||
|
|
||||||
* The receiver with USB Id 046d:c517 is an old 27 MHz receiver, supporting only
|
* The receiver with USB Id 046d:c517 is an old 27 MHz receiver, supporting only
|
||||||
|
|
|
@ -127,6 +127,7 @@ LIGHTSPEED_RECEIVER_C539 = _lightspeed_receiver(0xc539)
|
||||||
LIGHTSPEED_RECEIVER_C53a = _lightspeed_receiver(0xc53a)
|
LIGHTSPEED_RECEIVER_C53a = _lightspeed_receiver(0xc53a)
|
||||||
LIGHTSPEED_RECEIVER_C53f = _lightspeed_receiver(0xc53f)
|
LIGHTSPEED_RECEIVER_C53f = _lightspeed_receiver(0xc53f)
|
||||||
LIGHTSPEED_RECEIVER_C53d = _lightspeed_receiver(0xc53d)
|
LIGHTSPEED_RECEIVER_C53d = _lightspeed_receiver(0xc53d)
|
||||||
|
LIGHTSPEED_RECEIVER_C545 = _lightspeed_receiver(0xc545)
|
||||||
|
|
||||||
del _DRIVER, _unifying_receiver, _nano_receiver, _lenovo_receiver, _lightspeed_receiver
|
del _DRIVER, _unifying_receiver, _nano_receiver, _lenovo_receiver, _lightspeed_receiver
|
||||||
|
|
||||||
|
@ -150,6 +151,7 @@ ALL = (
|
||||||
LIGHTSPEED_RECEIVER_C53a,
|
LIGHTSPEED_RECEIVER_C53a,
|
||||||
LIGHTSPEED_RECEIVER_C53f,
|
LIGHTSPEED_RECEIVER_C53f,
|
||||||
LIGHTSPEED_RECEIVER_C53d,
|
LIGHTSPEED_RECEIVER_C53d,
|
||||||
|
LIGHTSPEED_RECEIVER_C545,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -40,6 +40,7 @@ ATTRS{idVendor}=="046d", ATTRS{idProduct}=="c539", GOTO="solaar_apply"
|
||||||
ATTRS{idVendor}=="046d", ATTRS{idProduct}=="c53a", GOTO="solaar_apply"
|
ATTRS{idVendor}=="046d", ATTRS{idProduct}=="c53a", GOTO="solaar_apply"
|
||||||
ATTRS{idVendor}=="046d", ATTRS{idProduct}=="c53d", GOTO="solaar_apply"
|
ATTRS{idVendor}=="046d", ATTRS{idProduct}=="c53d", GOTO="solaar_apply"
|
||||||
ATTRS{idVendor}=="046d", ATTRS{idProduct}=="c53f", GOTO="solaar_apply"
|
ATTRS{idVendor}=="046d", ATTRS{idProduct}=="c53f", GOTO="solaar_apply"
|
||||||
|
ATTRS{idVendor}=="046d", ATTRS{idProduct}=="c545", GOTO="solaar_apply"
|
||||||
|
|
||||||
# Lenovo nano receiver
|
# Lenovo nano receiver
|
||||||
ATTRS{idVendor}=="17ef", ATTRS{idProduct}=="6042", GOTO="solaar_apply"
|
ATTRS{idVendor}=="17ef", ATTRS{idProduct}=="6042", GOTO="solaar_apply"
|
||||||
|
|
Loading…
Reference in New Issue