You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm working on support for the JBL Quantum 810 which seems to report most status with an URB_INTERRUPT.
Is there a way listen to these interrupts? This would probably need some refactoring to implement a headset daemon, which could be out of scope for this project.
I'm also open to other ideas on how to poke the device to give out its state.
All the status updates and commands I have reversed so far are commented my fork of the project (see above).
For example the ANC (Active Noise Cancling) state change when the button on the device is pressed:
ANC On:
ANC Off:
USB Captures of most status changes by the device and software, if somebody likes to look into this: headset-usb-capture.zip
On which OS does the problem happen?
Linux
The text was updated successfully, but these errors were encountered:
Is there a way listen to these interrupts? This would probably need some refactoring to implement a headset daemon, which could be out of scope for this project.
In general you can use hid_read
or
headsetcontrol --dev -- --receive
In any case it needs to be polled.
There is also an example daemon implementation for the corsair void:
But was not really continued. Its a bit hard to integrate it with the rest of the application, probably also needs a special design regarding uniform output.
Description
I'm working on support for the JBL Quantum 810 which seems to report most status with an
URB_INTERRUPT
.Is there a way listen to these interrupts? This would probably need some refactoring to implement a headset daemon, which could be out of scope for this project.
I'm also open to other ideas on how to poke the device to give out its state.
All the status updates and commands I have reversed so far are commented my fork of the project (see above).
For example the ANC (Active Noise Cancling) state change when the button on the device is pressed:
ANC On:
ANC Off:
USB Captures of most status changes by the device and software, if somebody likes to look into this: headset-usb-capture.zip
On which OS does the problem happen?
Linux
The text was updated successfully, but these errors were encountered: