update adb version which fixes adb key missing error. Fixes #330

This commit is contained in:
Cooper Quintin
2025-05-29 15:00:23 -07:00
committed by Cooper Quintin
parent 4ee504fed7
commit 58843413b5
5 changed files with 8 additions and 15 deletions

View File

@@ -434,14 +434,6 @@ pub fn open_orbic() -> Result<Option<Interface>> {
return Ok(Some(interface));
}
// Another device with rndis enabled as well
if let Some(device) = open_usb_device(VENDOR_ID, 0xf626)? {
let interface = device
.detach_and_claim_interface(1) // will reattach drivers on release
.context("detach_and_claim_interface(1) failed")?;
return Ok(Some(interface));
}
Ok(None)
}