From 6a9c76311bc72b03c637e97c75e74eda2f1fc367 Mon Sep 17 00:00:00 2001 From: Johann Agnarsson Date: Tue, 23 Aug 2022 15:27:17 +0000 Subject: [PATCH 1/2] Adding support for Arctis 7p+ Playstation --- src/devices/steelseries_arctis_7_plus.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/devices/steelseries_arctis_7_plus.c b/src/devices/steelseries_arctis_7_plus.c index 430a57fa..851b6137 100644 --- a/src/devices/steelseries_arctis_7_plus.c +++ b/src/devices/steelseries_arctis_7_plus.c @@ -11,13 +11,14 @@ static struct device device_arctis; #define ID_ARCTIS_7_PLUS 0x220e +#define ID_ARCTIS_7_PLUS_PS5 0x2212 #define BATTERY_MAX 0x04 #define BATTERY_MIN 0x00 #define HEADSET_OFFLINE 0x01 -static const uint16_t PRODUCT_IDS[] = { ID_ARCTIS_7_PLUS }; +static const uint16_t PRODUCT_IDS[] = { ID_ARCTIS_7_PLUS, ID_ARCTIS_7_PLUS_PS5 }; 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); From 48571c42eecc9502e475fab2eab82b8c89f80f3e Mon Sep 17 00:00:00 2001 From: Johann Agnarsson Date: Tue, 23 Aug 2022 15:45:31 +0000 Subject: [PATCH 2/2] Fixing format --- src/devices/steelseries_arctis_7_plus.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/devices/steelseries_arctis_7_plus.c b/src/devices/steelseries_arctis_7_plus.c index 851b6137..6dd04f8d 100644 --- a/src/devices/steelseries_arctis_7_plus.c +++ b/src/devices/steelseries_arctis_7_plus.c @@ -10,7 +10,7 @@ static struct device device_arctis; -#define ID_ARCTIS_7_PLUS 0x220e +#define ID_ARCTIS_7_PLUS 0x220e #define ID_ARCTIS_7_PLUS_PS5 0x2212 #define BATTERY_MAX 0x04