-
Notifications
You must be signed in to change notification settings - Fork 2
Description
I'm using Windows with a UGREEN Bluetooth adapter with the same RTL8761BUV chip as the dongle in the readme.
Starting the server works without any issues, but I cannot find the HID device (tested with Android, Windows, and Linux). After some debugging, I figured out that it is necessary to upload a firmware blob to the dongle after each power loss. This issue might not occur on Linux, as the kernel driver should take care of that before getting detached.
After porting the firmware patching code of bumble the example server works as expected.
I understand that it's outside the scope of this project to support vendor-specific functionality, so here are a few suggestions that would make it possible to implement this functionality in an external crate:
- allow the construction of vendor-specific opcodes.
- ignore vendor-specific opcodes during the supported opcode check
- (provide a firmware check hook during initialization)