Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions src/devices/steelseries_arctis_7_plus.c
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,9 @@

static struct device device_arctis;

#define ID_ARCTIS_7_PLUS 0x220e
#define ID_ARCTIS_7_PLUS_PS5 0x2212
#define ID_ARCTIS_7_PLUS 0x220e
#define ID_ARCTIS_7_PLUS_PS5 0x2212
#define ID_ARCTIS_7_PLUS_XBOX 0x2216

#define BATTERY_MAX 0x04
#define BATTERY_MIN 0x00
Expand All @@ -21,7 +22,7 @@ static struct device device_arctis;

#define EQUALIZER_BANDS_SIZE 10

static const uint16_t PRODUCT_IDS[] = { ID_ARCTIS_7_PLUS, ID_ARCTIS_7_PLUS_PS5 };
static const uint16_t PRODUCT_IDS[] = { ID_ARCTIS_7_PLUS, ID_ARCTIS_7_PLUS_PS5, ID_ARCTIS_7_PLUS_XBOX };

static int arctis_7_plus_send_sidetone(hid_device* device_handle, uint8_t num);
static int arctis_7_plus_send_inactive_time(hid_device* device_handle, uint8_t num);
Expand Down