Skip to content

Commit

Permalink
Gave a better name to a ProductID
Browse files Browse the repository at this point in the history
  • Loading branch information
nicola02nb committed Nov 20, 2024
1 parent 718213a commit 1cecd5f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/devices/steelseries_arctis_nova_pro_wireless.c
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
static struct device device_arctis;

enum { ID_ARCTIS_NOVA_PRO_WIRELESS_BASE_STATION = 0x12e0,
ID_ARCTIS_NOVA_PRO_WIRELESS_BASE_STATION_2 = 0x12e5};
ID_ARCTIS_NOVA_PRO_WIRELESS_X_BASE_STATION = 0x12e5};

enum {
MSG_SIZE = 31,
Expand Down Expand Up @@ -48,7 +48,7 @@ enum {
EQUALIZER_BAND_MAX = +10,
};

static const uint16_t PRODUCT_IDS[] = { ID_ARCTIS_NOVA_PRO_WIRELESS_BASE_STATION, ID_ARCTIS_NOVA_PRO_WIRELESS_BASE_STATION_2 };
static const uint16_t PRODUCT_IDS[] = { ID_ARCTIS_NOVA_PRO_WIRELESS_BASE_STATION, ID_ARCTIS_NOVA_PRO_WIRELESS_X_BASE_STATION };
static EqualizerInfo EQUALIZER = { EQUALIZER_BANDS_SIZE, 0, 0.5, EQUALIZER_BAND_MIN, EQUALIZER_BAND_MAX };

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

0 comments on commit 1cecd5f

Please sign in to comment.