Skip to content

Commit

Permalink
Merge branch 'Sapd:master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
nicola02nb authored Oct 19, 2024
2 parents ab8b828 + c0c9b50 commit 3a6e0c3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ talking. This differs from a simple loopback via PulseAudio as you won't have an
| Logitech G PRO Series | x | x | | | x | | | | | | | | | | |
| Logitech G PRO X 2 | x | | | | x | | | | | | | | | | |
| Logitech Zone Wired/Zone 750 | x | | | | | | x | x | | | | | | | |
| SteelSeries Arctis (1/7X) Wireless | x | x | | | x | | | | | | | | | | |
| SteelSeries Arctis (1/7X/7P) Wireless | x | x | | | x | | | | | | | | | | |
| SteelSeries Arctis (7/Pro) | x | x | | x | x | x | | | | | | | | | |
| SteelSeries Arctis 9 | x | x | | | x | x | | | | | | | | | |
| SteelSeries Arctis Pro Wireless | x | x | | | x | | | | | | | | | | |
Expand Down Expand Up @@ -182,7 +182,7 @@ The following additional software can be used to enable control via a GUI

#### Windows

[HeadsetControl-GUI](https://github.com/nicola02nb/HeadsetControl-GUI) a simply GUI tool to manage your headset and check battery status. (Qt C++ based)
[HeadsetControl-GUI](https://github.com/LeoKlaus/HeadsetControl-GUI) a simply GUI tool to manage your headset and check battery status. (Qt C++ based)

[HeadsetControl-SystemTray](https://github.com/zampierilucas/HeadsetControl-SystemTray) adds a system tray icon, displaying the current amount of battery. (Python based)

Expand Down
5 changes: 3 additions & 2 deletions src/devices/steelseries_arctis_1.c
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,9 @@ static struct device device_arctis;
#define ID_ARCTIS_1 0x12b3
#define ID_ARCTIS_1_XBOX 0x12b6
#define ID_ARCTIS_7X 0x12d7
#define ID_ARCTIS_7P 0x12d5

static const uint16_t PRODUCT_IDS[] = { ID_ARCTIS_1, ID_ARCTIS_1_XBOX, ID_ARCTIS_7X };
static const uint16_t PRODUCT_IDS[] = { ID_ARCTIS_1, ID_ARCTIS_1_XBOX, ID_ARCTIS_7X, ID_ARCTIS_7P };

static int arctis_1_send_sidetone(hid_device* device_handle, uint8_t num);
static BatteryInfo arctis_1_request_battery(hid_device* device_handle);
Expand All @@ -27,7 +28,7 @@ void arctis_1_init(struct device** device)
device_arctis.idProductsSupported = PRODUCT_IDS;
device_arctis.numIdProducts = sizeof(PRODUCT_IDS) / sizeof(PRODUCT_IDS[0]);

strncpy(device_arctis.device_name, "SteelSeries Arctis (1/7X) Wireless", sizeof(device_arctis.device_name));
strncpy(device_arctis.device_name, "SteelSeries Arctis (1/7X/7P) Wireless", sizeof(device_arctis.device_name));

device_arctis.capabilities = B(CAP_SIDETONE) | B(CAP_BATTERY_STATUS) | B(CAP_INACTIVE_TIME);
device_arctis.capability_details[CAP_SIDETONE] = (struct capability_detail) { .usagepage = 0xff43, .usageid = 0x202, .interface = 0x03 };
Expand Down

0 comments on commit 3a6e0c3

Please sign in to comment.