Revert "ignore for now"

This reverts commit f571b2b9201f0a7a5571d3114a317bd9e55d879b.
This commit is contained in:
royjr
2026-08-30 21:53:55 -04:00
parent d7aa0f5002
commit 2f2692d515
+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)
self.set_vbus((not offroad or mismatch) or not self.params.get_bool("AuxPowerSave"))
if not mismatch:
self.flashed = False
return