receiver: add lightspeed receiver c541
This commit is contained in:
parent
2e1e8dc9b5
commit
b3cc4361e8
|
@ -62,6 +62,7 @@ a tuple of known feature settings (from `lib/logitech/settings_templates.py`).
|
||||||
| 064d:c53d | Lightspeed | 1 |
|
| 064d:c53d | Lightspeed | 1 |
|
||||||
| 064d:c53f | Lightspeed | 1 |
|
| 064d:c53f | Lightspeed | 1 |
|
||||||
| 064d:c545 | Lightspeed | 1 |
|
| 064d:c545 | Lightspeed | 1 |
|
||||||
|
| 064d:c541 | 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
|
||||||
|
|
|
@ -128,6 +128,7 @@ 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)
|
LIGHTSPEED_RECEIVER_C545 = _lightspeed_receiver(0xc545)
|
||||||
|
LIGHTSPEED_RECEIVER_C541 = _lightspeed_receiver(0xc541)
|
||||||
|
|
||||||
del _DRIVER, _unifying_receiver, _nano_receiver, _lenovo_receiver, _lightspeed_receiver
|
del _DRIVER, _unifying_receiver, _nano_receiver, _lenovo_receiver, _lightspeed_receiver
|
||||||
|
|
||||||
|
@ -152,6 +153,7 @@ ALL = (
|
||||||
LIGHTSPEED_RECEIVER_C53f,
|
LIGHTSPEED_RECEIVER_C53f,
|
||||||
LIGHTSPEED_RECEIVER_C53d,
|
LIGHTSPEED_RECEIVER_C53d,
|
||||||
LIGHTSPEED_RECEIVER_C545,
|
LIGHTSPEED_RECEIVER_C545,
|
||||||
|
LIGHTSPEED_RECEIVER_C541,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -41,6 +41,7 @@ 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"
|
ATTRS{idVendor}=="046d", ATTRS{idProduct}=="c545", GOTO="solaar_apply"
|
||||||
|
ATTRS{idVendor}=="046d", ATTRS{idProduct}=="c541", 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