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
5 changes: 3 additions & 2 deletions lib/devices/audeze_maxwell.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,10 @@ namespace headsetcontrol {
*/
class AudezeMaxwell : public HIDDevice {
public:
static constexpr std::array<uint16_t, 2> SUPPORTED_PRODUCT_IDS {
static constexpr std::array<uint16_t, 3> SUPPORTED_PRODUCT_IDS {
0x4b19, // Maxwell
0x4b18 // Maxwell Xbox Dongle
0x4b18, // Maxwell Xbox Dongle
0x4b29 // Maxwell 2 (PlayStation version)
};

static constexpr int MSG_SIZE = 62;
Expand Down
Loading