Skip to content

Commit b91357c

Browse files
committed
re-enable other hid devices
1 parent d2b625b commit b91357c

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

tool/src/main.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -426,16 +426,15 @@ fn main() {
426426
for info in api.device_list() {
427427
#[allow(clippy::single_match)]
428428
match (info.vendor_id(), info.product_id(), info.interface_number()) {
429-
/*
430429
// System76 launch_1
431430
(0x3384, 0x0001, 1) |
432431
// System76 launch_lite_1
433432
(0x3384, 0x0005, 1) |
434433
// System76 launch_2
435434
(0x3384, 0x0006, 1) |
436435
// System76 launch_heavy_1
437-
(0x3384, 0x0007, 1) => {
438-
*/
436+
(0x3384, 0x0007, 1) |
437+
// System76 thelio_io_2
439438
(0x3384, 0x000B, 1) => {
440439
let device = info.open_device(&api)?;
441440
let access = AccessHid::new(device, 10, 100)?;

0 commit comments

Comments
 (0)