Skip to content
Open
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
4 changes: 2 additions & 2 deletions cadmousectl.c
Original file line number Diff line number Diff line change
Expand Up @@ -130,8 +130,8 @@ int main(int argc, char **argv)

// Try loading the different versions until one works

int n_models = 3;
int models[] = {0xc650, 0xc656, 0xc652}; // CadMouse, CadMouse Pro, CadMouse Pro Wireless
int n_models = 4;
int models[] = {0xc650, 0xc655, 0xc656, 0xc652}; // CadMouse, CadMouse Compact, CadMouse Pro, CadMouse Pro Wireless
hid_device *mouse = NULL;
int i_model = 0;
while (i_model < n_models && mouse == NULL) {
Expand Down