From 07a2c5d590ffebc22d6ed24d286226ab47e999c2 Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Mon, 14 Feb 2022 10:12:12 -0700 Subject: [PATCH] Do not require display:input in usbhidd yet --- usbhidd/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usbhidd/src/main.rs b/usbhidd/src/main.rs index 884fa9da23..7715e5ce02 100644 --- a/usbhidd/src/main.rs +++ b/usbhidd/src/main.rs @@ -221,7 +221,7 @@ fn main() { let report_ty = ReportTy::Input; let report_id = 0; - let orbital_socket = File::open("display:input").expect("Failed to open orbital input socket"); + //TODO let orbital_socket = File::open("display:input").expect("Failed to open orbital input socket"); let mut pressed_keys = Vec::::new(); let mut last_pressed_keys = pressed_keys.clone();