Skip to content

Commit 152f5fb

Browse files
authored
Add suport for SteelSeries Arctis Nova 3X Wireless (#438)
1 parent a078180 commit 152f5fb

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ talking. This differs from a simple loopback via PulseAudio as you won't have an
3333
| ROCCAT Elo 7.1 Air | All | | | | x | x | | | | | | | | | | | |
3434
| ROCCAT Elo 7.1 USB | All | | | | x | | | | | | | | | | | | |
3535
| SteelSeries Arctis Nova 3 | All | x | | | | | | | | x | x | | x | x | | | |
36-
| SteelSeries Arctis Nova 3P Wireless | L/M | x | x | | | x | | | | x | x | x | | x | | | |
36+
| SteelSeries Arctis Nova 3P/3X Wireless | L/M | x | x | | | x | | | | x | x | x | | x | | | |
3737
| SteelSeries Arctis Nova (5/5X) | All | x | x | | | x | x | | | x | x | x | x | x | x | | |
3838
| SteelSeries Arctis Nova 7 | All | x | x | | | x | x | | | x | x | | x | x | x | x | x |
3939
| SteelSeries Arctis Nova 7 Wireless Gen 2 | All | x | x | | | x | x | | | x | x | | x | x | x | x | x |

src/devices/steelseries_arctis_nova_3p_wireless.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
#define MSG_SIZE 64
99

1010
#define ID_ARCTIS_NOVA_3P_WIRELESS 0x2269
11+
#define ID_ARCTIS_NOVA_3X_WIRELESS 0x226d
1112

1213
#define HEADSET_ONLINE 0x03
1314
#define HEADSET_OFFLINE 0x02
@@ -70,7 +71,7 @@ static uint8_t EQUALIZER_FILTER_MAP[NUM_EQ_FILTER_TYPES] = {
7071

7172
static struct device device_arctis;
7273

73-
static const uint16_t PRODUCT_IDS[] = { ID_ARCTIS_NOVA_3P_WIRELESS };
74+
static const uint16_t PRODUCT_IDS[] = { ID_ARCTIS_NOVA_3P_WIRELESS, ID_ARCTIS_NOVA_3X_WIRELESS };
7475
static const uint8_t SAVE_DATA[MSG_SIZE] = { 0x09 };
7576

7677
static int arctis_nova_3p_wireless_send_sidetone(hid_device* device_handle, uint8_t num);

0 commit comments

Comments
 (0)