Skip to content

Commit

Permalink
Add new ("official") VID/PID to detection
Browse files Browse the repository at this point in the history
  • Loading branch information
nilclass committed Feb 1, 2024
1 parent c3ac784 commit a7fd665
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/device_manager.rs
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ impl DeviceManager {
unreachable!()
};

if (*vid, *pid) == (0x1d50, 0xACAB) || (*vid, *pid) == (0xACAB, 0x1312) {
if (*vid, *pid) == (0x1d50, 0xACAB) || (*vid, *pid) == (0xACAB, 0x1312) || (*vid, *pid) == (0x1209, 0xACAB) {
//it's now matching based on PID, which I have changed, so update your firmware
// remove "tty" ports on Mac OS (only use the "cu" ones)
fixup_mac_ports(infos);
Expand Down

0 comments on commit a7fd665

Please sign in to comment.