Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR introduces initial configuration support for the SteelSeries Arctis GameBuds (PS5/PC) (PID: 0x230a).
Changes Included:
Integration Test Report & Known Limitations
The device successfully communicates via USB ctrl_transfer. Virtual audio sinks ("media" and "chat") are created without issues. However, due to missing telemetry data (status block) in gamebuds.yaml, some UI and synchronization limitations exist.
Pull Request Description
Title: feat: add initial support for SteelSeries Arctis GameBuds (PS5/PC)
Description:
This PR introduces initial configuration support for the SteelSeries Arctis GameBuds (PS5/PC) (PID:
0x230a).Changes Included:
src/linux_arctis_manager/devices/gamebuds.yaml- Initial device configuration mapping to enable standard control-transfer parameters.src/linux_arctis_manager/config.py- Fixed anAttributeErrorin theDeviceConfigurationclass. Previously, if a device configuration YAML lacked astatusordevice_initblock, the respective attributes were never initialized in the class constructor. This caused the daemon to crash (AttributeError: 'DeviceConfiguration' object has no attribute 'status') when polling the device state. Added explicit fallback assignments (self.status = Noneandself.device_init = None) to safely handle devices with unmapped telemetry.Integration Test Report & Known Limitations
1. General Overview
The device successfully communicates via USB
ctrl_transfer. Virtual audio sinks ("media" and "chat") are created without issues. However, due to missing telemetry data (status block) ingamebuds.yaml, some UI and synchronization limitations exist.2. Tab-Specific Test Results
statusblock is pending in the YAML file. Without telemetry data, the GUI triggers a UI fallback, incorrectly acting as if the device is disconnected.manage_mix_change(), leaving the volume desynced until manually adjusted.