Skip to content

Commit

Permalink
Fixed slow enumeration when Apple Cinema HD display 30" is plugged in
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Mar 14, 2020
1 parent 133b475 commit 19c3484
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/hidapi/windows/hid.c
Expand Up @@ -325,6 +325,12 @@ int hid_blacklist(unsigned short vendor_id, unsigned short product_id)
return 1;
}

// Apple Cinema HD display 30" - takes a long time to return the product string
if ( vendor_id == 0x05AC && product_id == 0x9220 )
{
return 1;
}

return 0;
}

Expand Down

0 comments on commit 19c3484

Please sign in to comment.