Skip to content

Commit

Permalink
re-enable other hid devices
Browse files Browse the repository at this point in the history
  • Loading branch information
jackpot51 committed Jun 8, 2023
1 parent d2b625b commit b91357c
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions tool/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -426,16 +426,15 @@ fn main() {
for info in api.device_list() {
#[allow(clippy::single_match)]
match (info.vendor_id(), info.product_id(), info.interface_number()) {
/*
// System76 launch_1
(0x3384, 0x0001, 1) |
// System76 launch_lite_1
(0x3384, 0x0005, 1) |
// System76 launch_2
(0x3384, 0x0006, 1) |
// System76 launch_heavy_1
(0x3384, 0x0007, 1) => {
*/
(0x3384, 0x0007, 1) |
// System76 thelio_io_2
(0x3384, 0x000B, 1) => {
let device = info.open_device(&api)?;
let access = AccessHid::new(device, 10, 100)?;
Expand Down

0 comments on commit b91357c

Please sign in to comment.