ignore for now

This commit is contained in:
royjr
2026-08-30 21:48:13 -04:00
parent a763c93496
commit d7aa0f5002
+1 -1
View File
@@ -68,7 +68,7 @@ class Chestnut:
def update(self, offroad: bool, usb_state: list[dict]) -> None:
mismatch = any((d["vendorId"], d["productId"]) in CHESTNUT_USB_IDS + CHESTNUT_ROM_USB_IDS and
d["product"] != f"custom {CHESTNUT_FW_VERSION}-CLEAN" for d in usb_state)
self.set_vbus((not offroad or mismatch) or not self.params.get_bool("AuxPowerSave"))
self.set_vbus(not offroad or mismatch)
if not mismatch:
self.flashed = False
return