Skip to content

Commit

Permalink
fix: seems the HID device ID is different than originally anticipated
Browse files Browse the repository at this point in the history
  • Loading branch information
tillt committed Dec 28, 2023
1 parent e5cce5b commit b1b8a73
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions KompleteSynthesia/USBController.m
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@
// MK2 controllers.
const uint32_t kPID_S49MK2 = 0x1610;
const uint32_t kPID_S61MK2 = 0x1620;
const uint32_t kPID_S88MK2 = 0x1630;
const uint32_t kPID_S88MK2 = 0x1710;

// MK3 controllers.
const uint32_t kPID_S49MK3 = 0x2200; // FIXME: NO IDEA - THESE ARE PLACEHOLDERS SO FAR
const uint32_t kPID_S61MK3 = 0x2210; // Confirmed, thanks to @Bounga.
const uint32_t kPID_S88MK3 = 0x2220; // FIXME: NO IDEA - THESE ARE PLACEHOLDERS SO FAR
const uint32_t kPID_S49MK3 = 0x2100; // FIXME: NO IDEA - THESE ARE PLACEHOLDERS SO FAR
const uint32_t kPID_S61MK3 = 0x2110; // Confirmed, thanks to @Bounga.
const uint32_t kPID_S88MK3 = 0x2120; // FIXME: NO IDEA - THESE ARE PLACEHOLDERS SO FAR

const uint32_t kUSBDeviceInterface = 0x03; // FIXME: Possibly MK2 specific.
const uint32_t kUSBDeviceInterfaceEndpoint = 0x03; // FIXME: Possibly MK2 specific.
Expand Down

0 comments on commit b1b8a73

Please sign in to comment.