receiver: sort receiver list and document status of receiver 0xC542

This commit is contained in:
Peter F. Patel-Schneider 2021-11-30 06:44:43 -05:00
parent 7242f3792c
commit be2f0b809c
2 changed files with 22 additions and 20 deletions

View File

@ -75,11 +75,15 @@ This is the main reason for new devices that use the HID++ protocol to need supp
| 046d:c541 | Lightspeed | 1 | | 046d:c541 | Lightspeed | 1 |
| 046d:c545 | Lightspeed | 1 | | 046d:c545 | Lightspeed | 1 |
| 046d:c547 | Lightspeed | 1 | | 046d:c547 | Lightspeed | 1 |
| 046d:c548 | Bolt | 6 |
| 17ef:6042 | Nano | 1 | | 17ef:6042 | Nano | 1 |
Some Nano receivers are only partly supported Some Nano receivers are only partly supported
as they do not fully implement the HID++ 1.0 protocol. as they do not fully implement the full HID++ 1.0 protocol.
The receiver with USB Id 046d:c517 is an old 27 MHz receiver, supporting only Some Nano receivers are not supported at all as they do not implement the HID++ protocol.
Receivers with USB ID 046d:c542 fall into this category.
The receiver with USB ID 046d:c517 is an old 27 MHz receiver, supporting only
subset of HID++ 1.0 protocol. Only hardware pairing is supported. subset of HID++ 1.0 protocol. Only hardware pairing is supported.

View File

@ -143,58 +143,56 @@ BOLT_RECEIVER_C548 = _bolt_receiver(0xc548)
UNIFYING_RECEIVER_C52B = _unifying_receiver(0xc52b) UNIFYING_RECEIVER_C52B = _unifying_receiver(0xc52b)
UNIFYING_RECEIVER_C532 = _unifying_receiver(0xc532) UNIFYING_RECEIVER_C532 = _unifying_receiver(0xc532)
# Nano receviers that support the Unifying protocol # Nano receivers (usually sold with low-end devices)
NANO_RECEIVER_ADVANCED = _nano_receiver_no_unpair(0xc52f) NANO_RECEIVER_ADVANCED = _nano_receiver_no_unpair(0xc52f)
# ex100 old style receiver pre-unifyimg protocol
EX100_27MHZ_RECEIVER_C517 = _ex100_receiver(0xc517)
# Nano receivers that don't support the Unifying protocol
NANO_RECEIVER_C518 = _nano_receiver(0xc518) NANO_RECEIVER_C518 = _nano_receiver(0xc518)
NANO_RECEIVER_C51A = _nano_receiver(0xc51a) NANO_RECEIVER_C51A = _nano_receiver(0xc51a)
NANO_RECEIVER_C51B = _nano_receiver(0xc51b) NANO_RECEIVER_C51B = _nano_receiver(0xc51b)
NANO_RECEIVER_C521 = _nano_receiver(0xc521) 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_no_unpair(0xc52e) NANO_RECEIVER_C52E = _nano_receiver_no_unpair(0xc52e)
NANO_RECEIVER_C531 = _nano_receiver(0xc531) NANO_RECEIVER_C531 = _nano_receiver(0xc531)
NANO_RECEIVER_C534 = _nano_receiver_max2(0xc534) NANO_RECEIVER_C534 = _nano_receiver_max2(0xc534)
NANO_RECEIVER_C537 = _nano_receiver(0xc537) NANO_RECEIVER_C537 = _nano_receiver(0xc537)
NANO_RECEIVER_6042 = _lenovo_receiver(0x6042) NANO_RECEIVER_6042 = _lenovo_receiver(0x6042)
# Lightspeed receivers # Lightspeed receivers (usually sold with gaming devices)
LIGHTSPEED_RECEIVER_C539 = _lightspeed_receiver(0xc539) 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_C53D = _lightspeed_receiver(0xc53d)
LIGHTSPEED_RECEIVER_C53d = _lightspeed_receiver(0xc53d) LIGHTSPEED_RECEIVER_C53F = _lightspeed_receiver(0xc53f)
LIGHTSPEED_RECEIVER_C545 = _lightspeed_receiver(0xc545)
LIGHTSPEED_RECEIVER_C541 = _lightspeed_receiver(0xc541) LIGHTSPEED_RECEIVER_C541 = _lightspeed_receiver(0xc541)
LIGHTSPEED_RECEIVER_C545 = _lightspeed_receiver(0xc545)
LIGHTSPEED_RECEIVER_C547 = _lightspeed_receiver(0xc547) LIGHTSPEED_RECEIVER_C547 = _lightspeed_receiver(0xc547)
# EX100 old style receiver pre-unifying protocol
EX100_27MHZ_RECEIVER_C517 = _ex100_receiver(0xc517)
ALL = ( ALL = (
BOLT_RECEIVER_C548, BOLT_RECEIVER_C548,
UNIFYING_RECEIVER_C52B, UNIFYING_RECEIVER_C52B,
UNIFYING_RECEIVER_C532, UNIFYING_RECEIVER_C532,
NANO_RECEIVER_ADVANCED, NANO_RECEIVER_ADVANCED,
EX100_27MHZ_RECEIVER_C517,
NANO_RECEIVER_C518, NANO_RECEIVER_C518,
NANO_RECEIVER_C51A, NANO_RECEIVER_C51A,
NANO_RECEIVER_C51B, NANO_RECEIVER_C51B,
NANO_RECEIVER_C521, NANO_RECEIVER_C521,
NANO_RECEIVER_C525, NANO_RECEIVER_C525,
NANO_RECEIVER_C526, NANO_RECEIVER_C526,
NANO_RECEIVER_C52e, NANO_RECEIVER_C52E,
NANO_RECEIVER_C531, NANO_RECEIVER_C531,
NANO_RECEIVER_C534, NANO_RECEIVER_C534,
NANO_RECEIVER_C537, NANO_RECEIVER_C537,
NANO_RECEIVER_6042, NANO_RECEIVER_6042,
LIGHTSPEED_RECEIVER_C539, LIGHTSPEED_RECEIVER_C539,
LIGHTSPEED_RECEIVER_C53a, LIGHTSPEED_RECEIVER_C53A,
LIGHTSPEED_RECEIVER_C53f, LIGHTSPEED_RECEIVER_C53D,
LIGHTSPEED_RECEIVER_C53d, LIGHTSPEED_RECEIVER_C53F,
LIGHTSPEED_RECEIVER_C545,
LIGHTSPEED_RECEIVER_C541, LIGHTSPEED_RECEIVER_C541,
LIGHTSPEED_RECEIVER_C545,
LIGHTSPEED_RECEIVER_C547, LIGHTSPEED_RECEIVER_C547,
EX100_27MHZ_RECEIVER_C517,
) )
_wired_device = lambda product_id, interface: { _wired_device = lambda product_id, interface: {